remove tilde backup files for distclean
fixed indentation added full name to AUTHORS reformated NEWS blurb for 0.8
This commit is contained in:
parent
2f2b123d71
commit
dd22bd3f22
|
@ -8,6 +8,7 @@ EXTRA_isync_SOURCES=debug.c
|
||||||
man_MANS=isync.1
|
man_MANS=isync.1
|
||||||
EXTRA_DIST=sample.isyncrc $(man_MANS)
|
EXTRA_DIST=sample.isyncrc $(man_MANS)
|
||||||
INCLUDES=$(RPM_OPT_FLAGS)
|
INCLUDES=$(RPM_OPT_FLAGS)
|
||||||
|
DISTCLEANFILES=*~
|
||||||
|
|
||||||
log:
|
log:
|
||||||
rcs2log -h sigpipe.org | sed 's;/home/cvs/isync/;;g' > ChangeLog
|
rcs2log -h sigpipe.org | sed 's;/home/cvs/isync/;;g' > ChangeLog
|
||||||
|
|
12
NEWS
12
NEWS
|
@ -1,10 +1,12 @@
|
||||||
[0.8]
|
[0.8]
|
||||||
|
|
||||||
IMPORTANT: In order to fix the problem where messages copied from one mailbox
|
!!! IMPORTANT !!!
|
||||||
to another were not uploaded to the new mailbox, the way Isync stores the UID
|
|
||||||
for each message needed to be changed. As a result, you MUST delete all the
|
In order to fix the problem where messages copied from one mailbox to
|
||||||
messages in the local maildir box before using this version. Otherwise it
|
another were not uploaded to the new mailbox, the way Isync stores the UID
|
||||||
will upload every message to the server thinking its a new mail.
|
for each message needed to be changed. As a result, you _MUST_ delete all
|
||||||
|
the messages in the local maildir box before using this version. Otherwise
|
||||||
|
it will upload every message to the server thinking its a new mail.
|
||||||
|
|
||||||
[0.7]
|
[0.7]
|
||||||
|
|
||||||
|
|
6
sync.c
6
sync.c
|
@ -227,9 +227,9 @@ sync_mailbox (mailbox_t * mbox, imap_t * imap, int flags,
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* update the filename in the msg struct */
|
/* update the filename in the msg struct */
|
||||||
p=strrchr(newpath,'/');
|
p = strrchr (newpath, '/');
|
||||||
free(cur->file);
|
free (cur->file);
|
||||||
cur->file=strdup(p+1);
|
cur->file = strdup (p + 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user