123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- /* isync - IMAP4 to maildir mailbox synchronizer
- * Copyright (C) 2000 Michael R. Elkins <me@mutt.org>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
- #include <stdio.h>
- #include <limits.h>
- #include <stdlib.h>
- #include <unistd.h>
- #include <time.h>
- #include <fcntl.h>
- #include <string.h>
- #include "isync.h"
- static unsigned int MaildirCount = 0;
- static message_t *
- find_msg (message_t * list, unsigned int uid)
- {
- for (; list; list = list->next)
- if (list->uid == uid)
- return list;
- return 0;
- }
- int
- sync_mailbox (mailbox_t * mbox, imap_t * imap, int flags)
- {
- message_t *cur;
- message_t *tmp;
- char path[_POSIX_PATH_MAX];
- char newpath[_POSIX_PATH_MAX];
- char *p;
- int fd;
- for (cur = mbox->msgs; cur; cur = cur->next)
- {
- tmp = find_msg (imap->msgs, cur->uid);
- if (!tmp)
- {
- printf ("warning, uid %d doesn't exist on server\n", cur->uid);
- if (flags & SYNC_DELETE)
- {
- cur->flags |= D_DELETED;
- cur->dead = 1;
- }
- continue;
- }
- tmp->processed = 1;
- if (!(flags & SYNC_FAST))
- {
- /* check if local flags are different from server flags.
- * ignore \Recent and \Draft
- */
- if (cur->flags != (tmp->flags & ~(D_RECENT | D_DRAFT)))
- {
- /* set local flags that don't exist on the server */
- imap_set_flags (imap, cur->uid, cur->flags & ~tmp->flags);
- /* update local flags */
- cur->flags |= (tmp->flags & ~(D_RECENT | D_DRAFT));
- cur->changed = 1;
- mbox->changed = 1;
- }
- }
- }
- fputs ("Fetching new messages", stdout);
- fflush (stdout);
- for (cur = imap->msgs; cur; cur = cur->next)
- {
- if (!cur->processed)
- {
- /* new message on server */
- fputs (".", stdout);
- fflush (stdout);
- /* create new file */
- snprintf (path, sizeof (path), "%s/tmp/%s.%ld_%d.%d.UID%d",
- mbox->path, Hostname, time (0), MaildirCount++,
- getpid (), cur->uid);
- if (cur->flags)
- {
- /* append flags */
- snprintf (path + strlen (path), sizeof (path) - strlen (path),
- ":2,%s%s%s%s",
- (cur->flags & D_FLAGGED) ? "F" : "",
- (cur->flags & D_ANSWERED) ? "R" : "",
- (cur->flags & D_SEEN) ? "S" : "",
- (cur->flags & D_DELETED) ? "T" : "");
- }
- // printf("creating %s\n", path);
- fd = open (path, O_WRONLY | O_CREAT | O_EXCL, 0600);
- if (fd < 0)
- {
- perror ("open");
- continue;
- }
- imap_fetch_message (imap, cur->uid, fd);
- close (fd);
- p = strrchr (path, '/');
- snprintf (newpath, sizeof (newpath), "%s/%s%s", mbox->path,
- (cur->flags & D_SEEN) ? "cur" : "new", p);
- // printf ("moving %s to %s\n", path, newpath);
- if (rename (path, newpath))
- perror ("rename");
- }
- }
- puts ("");
- return 0;
- }
|