MANUAL: fix typo about variable declaration in configuration file
I included a wrong change in commit dcfdf2ade7
writen by Sebastian.
As he said:
> I think the first colon should be an equals sign... :-)
Actually no, this was on purpose.
http://docs.python.org/library/configparser.html:
[My Section]
foodir: %(dir)s/whatever
dir=frob
long: this value continues
in the next line
Reported-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
parent
dcfdf2ade7
commit
f10e3a58fc
@ -478,7 +478,7 @@ Another nametrans transpose example
|
|||||||
|
|
||||||
Put everything in a GMX. subfolder except for the boxes INBOX, Draft, and Sent which should keep the same name::
|
Put everything in a GMX. subfolder except for the boxes INBOX, Draft, and Sent which should keep the same name::
|
||||||
|
|
||||||
nametrans = lambda folder: folder if folder in ['INBOX', 'Drafts', 'Sent'] \
|
nametrans: lambda folder: folder if folder in ['INBOX', 'Drafts', 'Sent'] \
|
||||||
else re.sub(r'^', r'GMX.', folder)
|
else re.sub(r'^', r'GMX.', folder)
|
||||||
|
|
||||||
2 IMAP using name translations
|
2 IMAP using name translations
|
||||||
|
Loading…
Reference in New Issue
Block a user