diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2014-12-18 15:19:17 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-06-07 02:53:21 +0200 |
commit | ebfc345a68ab4289250933aa3a780696eb59efca (patch) | |
tree | b620812752757c7ae3a6038683b0abbe3d6d9942 /roles/webmail | |
parent | bf3747dcf42909980c37caf7d70aeac6d2048d7a (diff) |
Don't make Roundcube add a 'X-Sender' header with the sender's identity.
Diffstat (limited to 'roles/webmail')
-rw-r--r-- | roles/webmail/templates/usr/share/roundcube/plugins/additional_message_headers/config.inc.php.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/webmail/templates/usr/share/roundcube/plugins/additional_message_headers/config.inc.php.j2 b/roles/webmail/templates/usr/share/roundcube/plugins/additional_message_headers/config.inc.php.j2 index d1789e7..e9d0d3d 100644 --- a/roles/webmail/templates/usr/share/roundcube/plugins/additional_message_headers/config.inc.php.j2 +++ b/roles/webmail/templates/usr/share/roundcube/plugins/additional_message_headers/config.inc.php.j2 @@ -9,6 +9,6 @@ $rcmail_config['additional_message_headers']['X-Originating-IP'] = null; // } // To remove (e.g. X-Sender) message header use null value -$rcmail_config['additional_message_headers']['X-Sender'] = $_SESSION['username']; +$rcmail_config['additional_message_headers']['X-Sender'] = null; ?> |