From 8cbe5640b27e3e9f83d1390f952e20e750653603 Mon Sep 17 00:00:00 2001 From: Nicolas Sebrecht Date: Thu, 15 Oct 2015 13:42:17 +0200 Subject: [PATCH] offlineimap.conf: improve namtrans doc a bit Signed-off-by: Nicolas Sebrecht --- offlineimap.conf | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/offlineimap.conf b/offlineimap.conf index 07f9901..b8f2469 100644 --- a/offlineimap.conf +++ b/offlineimap.conf @@ -941,16 +941,17 @@ remoteuser = username # folders, UNLESS the second values are filtered out by folderfilter below. # Failure to follow this rule will result in undefined behavior. # -# See the user documentation for details and use cases. They are also online at: -# http://docs.offlineimap.org/en/latest/nametrans.html +# If you enable nametrans, you will likely need to set the reversed nametrans on +# the other side. See the user documentation for details and use cases. They +# are also online at: http://offlineimap.org/doc/nametrans.html # # This example below will remove "INBOX." from the leading edge of folders # (great for Courier IMAP users). # #nametrans = lambda foldername: re.sub('^INBOX\.', '', foldername) # -# Using Courier remotely and want to duplicate its mailbox naming -# locally? Try this: +# Using Courier remotely and want to duplicate its mailbox naming locally? Try +# this: # #nametrans = lambda foldername: re.sub('^INBOX\.*', '.', foldername)