mirror of
https://kernel.googlesource.com/pub/scm/linux/kernel/git/tglx/remail.git
synced 2024-11-24 21:32:39 +01:00
remail: Fix the from mangling
The comment in mangle_from() says that if there is not a real name then the email address is mangled by replacing @ with _at_. The comment is great just the implementation is not doing so. Add the replacement functionality. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
576165a654
commit
e2626e1dca
1 changed files with 1 additions and 0 deletions
|
@ -233,6 +233,7 @@ class maillist(object):
|
||||||
If $ORIGINAL_FROM does not contain a name, mangle the email
|
If $ORIGINAL_FROM does not contain a name, mangle the email
|
||||||
address by replacing @ with _at_
|
address by replacing @ with _at_
|
||||||
'''
|
'''
|
||||||
|
mfrom = mfrom.replace('@','_at_')
|
||||||
return '%s for %s <%s>' % (self.config.name, mfrom,
|
return '%s for %s <%s>' % (self.config.name, mfrom,
|
||||||
self.config.listaddrs.post)
|
self.config.listaddrs.post)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue