isync

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

commit 9b7c09e4b6db5d9254bbd49f87c6e1089f1b98a1
parent aea4be19e38742ba14941f13959e4291b5a27dba
Author: Oswald Buddenhagen <ossi@users.sf.net>
Date:   Mon,  5 Jun 2006 11:59:51 +0000

enable the old account naming scheme to deal with duplicated ip
addresses.
this is not incompatible - previously, it would just create garbage.

Diffstat:
Msrc/compat/config.c | 20++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/src/compat/config.c b/src/compat/config.c @@ -248,7 +248,7 @@ write_imap_server( FILE *fp, config_t *cfg ) nfasprintf( (char **)&cfg->old_server_name, "tunnel%d", ++tunnels ); else { if (sscanf( cfg->host, "%d.%d.%d.%d", &a1, &a2, &a3, &a4 ) == 4) - cfg->old_server_name = nfstrdup( cfg->host ); + hl = nfsnprintf( buf, sizeof(buf), "%s", cfg->host ); else { p = strrchr( cfg->host, '.' ); if (!p) @@ -259,16 +259,16 @@ write_imap_server( FILE *fp, config_t *cfg ) if (p2) hl = sprintf( buf, "%s", p2 + 1 ); } - if (boxes) /* !o2o */ - for (pbox = boxes; pbox != cfg; pbox = pbox->next) - if (!memcmp( pbox->server_name, buf, hl + 1 )) { - nfasprintf( (char **)&cfg->old_server_name, "%s-%d", buf, ++pbox->old_servers ); - goto gotsrv; - } - cfg->old_server_name = nfstrdup( buf ); - cfg->old_servers = 1; - gotsrv: ; } + if (boxes) /* !o2o */ + for (pbox = boxes; pbox != cfg; pbox = pbox->next) + if (!memcmp( pbox->server_name, buf, hl + 1 )) { + nfasprintf( (char **)&cfg->old_server_name, "%s-%d", buf, ++pbox->old_servers ); + goto gotsrv; + } + cfg->old_server_name = nfstrdup( buf ); + cfg->old_servers = 1; + gotsrv: ; } if (cfg->user)