isync

mailbox synchronization program
git clone https://git.code.sf.net/p/isync/isync
Log | Files | Refs | README | LICENSE

commit 183f256557246bcf2d67aa960c3cba5245b972ce
parent bf9d7c769503a5418baee936ffa9b0d8d88cdf1a
Author: Oswald Buddenhagen <ossi@users.sf.net>
Date:   Mon, 10 Mar 2014 11:54:22 +0100

don't needlessly spell out INBOX

Diffstat:
Msrc/compat/main.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/compat/main.c b/src/compat/main.c @@ -174,7 +174,7 @@ main( int argc, char **argv ) global.user = getenv( "LOGNAME" ); #endif global.port = 143; - global.box = "INBOX"; + global.box = ""; /* implicit INBOX in resulting Master/Slave entries */ global.use_namespace = 1; global.require_ssl = 1; global.use_tlsv1 = 1;