diff options
author | Eduardo Chappa <chappa@washington.edu> | 2020-06-29 03:19:56 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2020-06-29 03:19:56 -0600 |
commit | 4d77713f495bc1e797393cb05e88f17f78ff91d1 (patch) | |
tree | 1850ff02995d4c70ab32e3b125a39dff7c1414ab /imap/src | |
parent | ac3618ca9d4d5136b8e231c6de23b2da6add204f (diff) | |
download | alpine-4d77713f495bc1e797393cb05e88f17f78ff91d1.tar.xz |
* Modifications to protect the privacy of users:
+ Alpine does not generate Sender or X-X-Sender by default
by making [X] Do Not Generate Sender Header the default.
+ Alpine does not disclose User Agent by default by making
[X] Suppress User Agent When Sending the default.
+ Alpine uses the domain in the From: header of a message
to generate a message-id and suppresses all information
about Alpine, version, revision, and time of generation
of the message-id from this header. This information is
replaced by a random string.
Diffstat (limited to 'imap/src')
-rw-r--r-- | imap/src/c-client/mail.h | 1 | ||||
-rw-r--r-- | imap/src/c-client/oauth2_aux.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/imap/src/c-client/mail.h b/imap/src/c-client/mail.h index eb8f0139..65e02288 100644 --- a/imap/src/c-client/mail.h +++ b/imap/src/c-client/mail.h @@ -2005,3 +2005,4 @@ void oauth2deviceinfo_get_accesscode(void *, void *); XOAUTH2_INFO_S *new_xoauth2_info(void); void free_xoauth2_info(XOAUTH2_INFO_S **); XOAUTH2_INFO_S *copy_xoauth2_info(XOAUTH2_INFO_S *); +char *oauth2_generate_state(void); diff --git a/imap/src/c-client/oauth2_aux.h b/imap/src/c-client/oauth2_aux.h index b076da3c..7882a3c0 100644 --- a/imap/src/c-client/oauth2_aux.h +++ b/imap/src/c-client/oauth2_aux.h @@ -18,7 +18,6 @@ #define OA2_CODE_SUCCESS 0 void mm_login_oauth2_c_client_method (NETMBX *, char *, char *, OAUTH2_S *, unsigned long, int *); -char *oauth2_generate_state(void); void oauth2deviceinfo_get_accesscode(void *, void *); #endif /* C_CLIENT_OAUTH2_AUX_INCLUDED */ |