diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-01-22 07:28:20 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-01-22 07:28:20 +0800 |
commit | cf8db42ff883c5452998b0d8f57c2394abec42db (patch) | |
tree | 030b5f03937bded69cfc167942bbf92561992426 /camel/camel-mime-utils.h | |
parent | 16b174cf0eebcb216316674966a46ea29a3bb15b (diff) | |
download | gsoc2013-evolution-cf8db42ff883c5452998b0d8f57c2394abec42db.tar.gz gsoc2013-evolution-cf8db42ff883c5452998b0d8f57c2394abec42db.tar.zst gsoc2013-evolution-cf8db42ff883c5452998b0d8f57c2394abec42db.zip |
As a temporary solution, just printf ("\a"); to make a beep :-)
2002-01-21 Jeffrey Stedfast <fejj@ximian.com>
* camel-filter-driver.c (do_beep): As a temporary solution, just
printf ("\a"); to make a beep :-)
* providers/imap/camel-imap-command.c
(imap_command_strdup_vprintf): Encode the mailbox to UTF-7 here.
* providers/imap/camel-imap-utils.c (imap_parse_list_response):
Decode the mailbox name as we parse the list response.
(imap_mailbox_decode): It's only an illegal mailbox name if it
didn't switch back to US-ASCII mode.
svn path=/trunk/; revision=15421
Diffstat (limited to 'camel/camel-mime-utils.h')
-rw-r--r-- | camel/camel-mime-utils.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/camel/camel-mime-utils.h b/camel/camel-mime-utils.h index 8bd9c81993..7795741c48 100644 --- a/camel/camel-mime-utils.h +++ b/camel/camel-mime-utils.h @@ -28,10 +28,10 @@ /* maximum size of a line from header_fold() */ #define CAMEL_FOLD_SIZE (77) -#define CAMEL_UUDECODE_STATE_INIT (0) -#define CAMEL_UUDECODE_STATE_BEGIN (1 << 16) -#define CAMEL_UUDECODE_STATE_END (1 << 17) -#define CAMEL_UUDECODE_STATE_MASK (CAMEL_UUDECODE_STATE_BEGIN | CAMEL_UUDECODE_STATE_END) +#define CAMEL_UUDECODE_STATE_INIT (0) +#define CAMEL_UUDECODE_STATE_BEGIN (1 << 16) +#define CAMEL_UUDECODE_STATE_END (1 << 17) +#define CAMEL_UUDECODE_STATE_MASK (CAMEL_UUDECODE_STATE_BEGIN | CAMEL_UUDECODE_STATE_END) /* a list of references for this message */ struct _header_references { |