2000-12-21 00:30:53 +00:00
|
|
|
/* $Id$
|
|
|
|
*
|
|
|
|
* isync - IMAP4 to maildir mailbox synchronizer
|
2002-01-16 19:47:28 +00:00
|
|
|
* Copyright (C) 2000-2 Michael R. Elkins <me@mutt.org>
|
2000-12-20 21:41:21 +00:00
|
|
|
*
|
|
|
|
* 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 <limits.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
2000-12-22 07:14:32 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <errno.h>
|
2001-11-09 00:23:50 +00:00
|
|
|
#include <time.h>
|
2000-12-20 21:41:21 +00:00
|
|
|
#include "isync.h"
|
|
|
|
|
2000-12-22 07:14:32 +00:00
|
|
|
static int
|
|
|
|
do_lock (int fd, int flag)
|
|
|
|
{
|
|
|
|
struct flock lck;
|
|
|
|
struct stat sb;
|
|
|
|
|
|
|
|
if (fstat (fd, &sb))
|
|
|
|
{
|
|
|
|
perror ("fstat");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset (&lck, 0, sizeof (lck));
|
|
|
|
lck.l_type = flag;
|
|
|
|
lck.l_whence = SEEK_SET;
|
|
|
|
lck.l_start = 0;
|
|
|
|
lck.l_len = sb.st_size;
|
|
|
|
|
|
|
|
if (fcntl (fd, F_SETLK, &lck))
|
|
|
|
{
|
|
|
|
perror ("fcntl");
|
|
|
|
close (fd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-12-20 21:41:21 +00:00
|
|
|
/* 2,<flags> */
|
|
|
|
static void
|
|
|
|
parse_info (message_t * m, char *s)
|
|
|
|
{
|
|
|
|
if (*s == '2' && *(s + 1) == ',')
|
|
|
|
{
|
|
|
|
s += 2;
|
|
|
|
while (*s)
|
|
|
|
{
|
|
|
|
if (*s == 'F')
|
|
|
|
m->flags |= D_FLAGGED;
|
|
|
|
else if (*s == 'R')
|
|
|
|
m->flags |= D_ANSWERED;
|
|
|
|
else if (*s == 'T')
|
|
|
|
m->flags |= D_DELETED;
|
|
|
|
else if (*s == 'S')
|
|
|
|
m->flags |= D_SEEN;
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-12-22 07:14:32 +00:00
|
|
|
static unsigned int
|
|
|
|
read_uid (const char *path, const char *file)
|
|
|
|
{
|
|
|
|
char full[_POSIX_PATH_MAX];
|
|
|
|
int fd;
|
2002-01-16 19:47:28 +00:00
|
|
|
int ret = 0;
|
2000-12-22 07:14:32 +00:00
|
|
|
int len;
|
|
|
|
char buf[64];
|
|
|
|
unsigned int uid = 0;
|
|
|
|
|
|
|
|
snprintf (full, sizeof (full), "%s/%s", path, file);
|
|
|
|
fd = open (full, O_RDONLY);
|
|
|
|
if (fd == -1)
|
|
|
|
{
|
|
|
|
if (errno != ENOENT)
|
|
|
|
{
|
2002-01-16 19:47:28 +00:00
|
|
|
perror (full);
|
2000-12-22 07:14:32 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2000-12-27 21:14:22 +00:00
|
|
|
return 0; /* doesn't exist */
|
2000-12-22 07:14:32 +00:00
|
|
|
}
|
2002-01-16 19:47:28 +00:00
|
|
|
len = read (fd, buf, sizeof (buf) - 1);
|
|
|
|
if (len == -1)
|
2000-12-22 07:14:32 +00:00
|
|
|
{
|
2002-01-16 19:47:28 +00:00
|
|
|
perror ("read");
|
|
|
|
ret = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
buf[len] = 0;
|
|
|
|
uid = atol (buf);
|
2000-12-22 07:14:32 +00:00
|
|
|
}
|
|
|
|
close (fd);
|
2001-02-19 18:44:15 +00:00
|
|
|
return ret ? (unsigned int) ret : uid;
|
2000-12-22 07:14:32 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2002-01-16 19:47:28 +00:00
|
|
|
/* NOTE: this is NOT NFS safe */
|
|
|
|
static int
|
|
|
|
maildir_lock (mailbox_t * m)
|
|
|
|
{
|
|
|
|
char path[_POSIX_PATH_MAX];
|
|
|
|
|
|
|
|
snprintf (path, sizeof (path), "%s/isynclock", m->path);
|
|
|
|
m->lockfd = open (path, O_WRONLY | O_CREAT | O_EXCL, S_IWUSR | S_IRUSR);
|
|
|
|
if (m->lockfd == -1)
|
|
|
|
{
|
|
|
|
perror (path);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (do_lock (m->lockfd, F_WRLCK))
|
|
|
|
{
|
|
|
|
close (m->lockfd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
maildir_unlock (mailbox_t * m)
|
|
|
|
{
|
|
|
|
char path[_POSIX_PATH_MAX];
|
|
|
|
|
|
|
|
snprintf (path, sizeof (path), "%s/isynclock", m->path);
|
|
|
|
unlink (path);
|
|
|
|
do_lock (m->lockfd, F_UNLCK);
|
|
|
|
close (m->lockfd);
|
|
|
|
}
|
|
|
|
|
2001-11-20 18:06:09 +00:00
|
|
|
/* open a maildir mailbox.
|
|
|
|
* if OPEN_FAST is set, we just check to make
|
2000-12-20 21:41:21 +00:00
|
|
|
* sure its a valid mailbox and don't actually parse it. any IMAP messages
|
|
|
|
* with the \Recent flag set are guaranteed not to be in the mailbox yet,
|
|
|
|
* so we can save a lot of time when the user just wants to fetch new messages
|
|
|
|
* without syncing the flags.
|
2001-11-20 18:06:09 +00:00
|
|
|
* if OPEN_CREATE is set, we create the mailbox if it doesn't already exist.
|
2000-12-20 21:41:21 +00:00
|
|
|
*/
|
|
|
|
mailbox_t *
|
2001-11-20 18:06:09 +00:00
|
|
|
maildir_open (const char *path, int flags)
|
2000-12-20 21:41:21 +00:00
|
|
|
{
|
|
|
|
char buf[_POSIX_PATH_MAX];
|
|
|
|
DIR *d;
|
|
|
|
struct dirent *e;
|
|
|
|
message_t **cur;
|
|
|
|
message_t *p;
|
|
|
|
mailbox_t *m;
|
|
|
|
char *s;
|
|
|
|
int count = 0;
|
2001-11-20 18:06:09 +00:00
|
|
|
struct stat sb;
|
|
|
|
const char *subdirs[] = { "cur", "new", "tmp" };
|
|
|
|
int i;
|
2002-01-16 19:47:28 +00:00
|
|
|
datum key;
|
2000-12-20 21:41:21 +00:00
|
|
|
|
2001-07-18 18:49:55 +00:00
|
|
|
m = calloc (1, sizeof (mailbox_t));
|
2002-01-16 19:47:28 +00:00
|
|
|
m->lockfd = -1;
|
2001-07-18 18:49:55 +00:00
|
|
|
/* filename expansion happens here, not in the config parser */
|
|
|
|
m->path = expand_strdup (path);
|
|
|
|
|
2001-11-20 18:06:09 +00:00
|
|
|
if (stat (m->path, &sb))
|
2000-12-20 21:41:21 +00:00
|
|
|
{
|
2001-11-20 18:06:09 +00:00
|
|
|
if (errno == ENOENT && (flags & OPEN_CREATE))
|
|
|
|
{
|
|
|
|
if (mkdir (m->path, S_IRUSR | S_IWUSR | S_IXUSR))
|
|
|
|
{
|
|
|
|
fprintf (stderr, "ERROR: mkdir %s: %s (errno %d)\n",
|
|
|
|
m->path, strerror (errno), errno);
|
2002-01-16 19:47:28 +00:00
|
|
|
goto err;
|
2001-11-20 18:06:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < 3; i++)
|
|
|
|
{
|
|
|
|
snprintf (buf, sizeof (buf), "%s/%s", m->path, subdirs[i]);
|
|
|
|
if (mkdir (buf, S_IRUSR | S_IWUSR | S_IXUSR))
|
|
|
|
{
|
|
|
|
fprintf (stderr, "ERROR: mkdir %s: %s (errno %d)\n",
|
|
|
|
buf, strerror (errno), errno);
|
2002-01-16 19:47:28 +00:00
|
|
|
goto err;
|
2001-11-20 18:06:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fprintf (stderr, "ERROR: stat %s: %s (errno %d)\n", m->path,
|
|
|
|
strerror (errno), errno);
|
2002-01-16 19:47:28 +00:00
|
|
|
goto err;
|
2001-11-20 18:06:09 +00:00
|
|
|
}
|
2000-12-20 21:41:21 +00:00
|
|
|
}
|
2001-11-20 18:06:09 +00:00
|
|
|
else
|
2000-12-20 21:41:21 +00:00
|
|
|
{
|
2001-11-20 18:06:09 +00:00
|
|
|
/* check to make sure this looks like a valid maildir box */
|
|
|
|
for (i = 0; i < 3; i++)
|
|
|
|
{
|
|
|
|
snprintf (buf, sizeof (buf), "%s/%s", m->path, subdirs[i]);
|
|
|
|
if (stat (buf, &sb))
|
|
|
|
{
|
|
|
|
fprintf (stderr, "ERROR: stat %s: %s (errno %d)\n", buf,
|
|
|
|
strerror (errno), errno);
|
|
|
|
fprintf (stderr,
|
|
|
|
"ERROR: %s does not appear to be a valid maildir style mailbox\n",
|
|
|
|
m->path);
|
2002-01-16 19:47:28 +00:00
|
|
|
goto err;
|
2001-11-20 18:06:09 +00:00
|
|
|
}
|
|
|
|
}
|
2000-12-20 21:41:21 +00:00
|
|
|
}
|
2000-12-21 23:10:18 +00:00
|
|
|
|
2002-01-16 19:47:28 +00:00
|
|
|
/* we need a mutex on the maildir because of the state files that isync
|
|
|
|
* uses.
|
|
|
|
*/
|
|
|
|
if (maildir_lock (m))
|
|
|
|
goto err;
|
|
|
|
|
2000-12-21 23:10:18 +00:00
|
|
|
/* check for the uidvalidity value */
|
2001-07-18 18:49:55 +00:00
|
|
|
m->uidvalidity = read_uid (m->path, "isyncuidvalidity");
|
2000-12-22 07:14:32 +00:00
|
|
|
if (m->uidvalidity == (unsigned int) -1)
|
2002-01-16 19:47:28 +00:00
|
|
|
goto err;
|
2000-12-22 07:14:32 +00:00
|
|
|
|
|
|
|
/* load the current maxuid */
|
2001-07-18 18:49:55 +00:00
|
|
|
if ((m->maxuid = read_uid (m->path, "isyncmaxuid")) == (unsigned int) -1)
|
2002-01-16 19:47:28 +00:00
|
|
|
goto err;
|
2000-12-20 21:41:21 +00:00
|
|
|
|
2001-11-20 18:06:09 +00:00
|
|
|
if (flags & OPEN_FAST)
|
2000-12-20 21:41:21 +00:00
|
|
|
return m;
|
|
|
|
|
2002-01-16 19:47:28 +00:00
|
|
|
snprintf (buf, sizeof (buf), "%s/isyncuidmap", m->path);
|
|
|
|
m->db = dbm_open (buf, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
|
|
|
|
if (m->db == NULL)
|
|
|
|
{
|
|
|
|
fputs ("ERROR: unable to open UID db\n", stderr);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2000-12-20 21:41:21 +00:00
|
|
|
cur = &m->msgs;
|
|
|
|
for (; count < 2; count++)
|
|
|
|
{
|
|
|
|
/* read the msgs from the new subdir */
|
2001-07-18 18:49:55 +00:00
|
|
|
snprintf (buf, sizeof (buf), "%s/%s", m->path,
|
2000-12-20 21:41:21 +00:00
|
|
|
(count == 0) ? "new" : "cur");
|
|
|
|
d = opendir (buf);
|
|
|
|
if (!d)
|
|
|
|
{
|
|
|
|
perror ("opendir");
|
2002-01-16 19:47:28 +00:00
|
|
|
goto err;
|
2000-12-20 21:41:21 +00:00
|
|
|
}
|
|
|
|
while ((e = readdir (d)))
|
|
|
|
{
|
|
|
|
if (*e->d_name == '.')
|
|
|
|
continue; /* skip dot-files */
|
|
|
|
*cur = calloc (1, sizeof (message_t));
|
|
|
|
p = *cur;
|
|
|
|
p->file = strdup (e->d_name);
|
|
|
|
p->uid = -1;
|
2001-01-09 20:09:35 +00:00
|
|
|
p->flags = 0;
|
2000-12-20 21:41:21 +00:00
|
|
|
p->new = (count == 0);
|
|
|
|
|
2002-01-16 19:47:28 +00:00
|
|
|
/* determine the UID for this message. The basename (sans
|
|
|
|
* flags) is used as the key in the db
|
2000-12-20 21:41:21 +00:00
|
|
|
*/
|
2002-01-16 21:22:43 +00:00
|
|
|
key.dptr = p->file;
|
|
|
|
s = strchr (key.dptr, ':');
|
2002-01-16 21:43:58 +00:00
|
|
|
key.dsize = s ? (size_t) (s - key.dptr) : strlen (key.dptr);
|
2002-01-16 19:47:28 +00:00
|
|
|
key = dbm_fetch (m->db, key);
|
|
|
|
if (key.dptr)
|
2000-12-20 21:41:21 +00:00
|
|
|
{
|
2002-01-16 19:47:28 +00:00
|
|
|
p->uid = *(int *) key.dptr;
|
2000-12-22 07:14:32 +00:00
|
|
|
if (p->uid > m->maxuid)
|
|
|
|
m->maxuid = p->uid;
|
2000-12-20 21:41:21 +00:00
|
|
|
}
|
2002-01-16 19:47:28 +00:00
|
|
|
else
|
|
|
|
puts ("Warning, no UID for message");
|
2000-12-20 21:41:21 +00:00
|
|
|
|
|
|
|
if (s)
|
|
|
|
parse_info (p, s + 1);
|
2000-12-21 00:30:53 +00:00
|
|
|
if (p->flags & D_DELETED)
|
|
|
|
m->deleted++;
|
2000-12-20 21:41:21 +00:00
|
|
|
cur = &p->next;
|
|
|
|
}
|
|
|
|
closedir (d);
|
|
|
|
}
|
|
|
|
return m;
|
2002-01-16 19:47:28 +00:00
|
|
|
|
|
|
|
err:
|
|
|
|
if (m->db)
|
|
|
|
dbm_close (m->db);
|
|
|
|
if (m->lockfd != -1)
|
|
|
|
maildir_unlock (m);
|
|
|
|
free (m->path);
|
|
|
|
free (m);
|
|
|
|
return NULL;
|
2000-12-20 21:41:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* permanently remove messages from a maildir mailbox. if `dead' is nonzero,
|
|
|
|
* we only remove the messags marked dead.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
maildir_expunge (mailbox_t * mbox, int dead)
|
|
|
|
{
|
2002-01-16 21:43:58 +00:00
|
|
|
message_t **cur = &mbox->msgs;
|
|
|
|
message_t *tmp;
|
|
|
|
char *s;
|
|
|
|
datum key;
|
|
|
|
char path[_POSIX_PATH_MAX];
|
2000-12-20 21:41:21 +00:00
|
|
|
|
2002-01-16 21:43:58 +00:00
|
|
|
while (*cur)
|
|
|
|
{
|
|
|
|
if ((dead == 0 && (*cur)->flags & D_DELETED) ||
|
|
|
|
(dead && (*cur)->dead))
|
2000-12-20 21:41:21 +00:00
|
|
|
{
|
2002-01-16 21:43:58 +00:00
|
|
|
tmp = *cur;
|
|
|
|
snprintf (path, sizeof (path), "%s/%s/%s",
|
|
|
|
mbox->path, tmp->new ? "new" : "cur", tmp->file);
|
|
|
|
if (unlink (path))
|
|
|
|
perror (path);
|
|
|
|
/* remove the message from the UID map */
|
|
|
|
key.dptr = tmp->file;
|
|
|
|
s = strchr (key.dptr, ':');
|
|
|
|
key.dsize = s ? (size_t) (s - key.dptr) : strlen (key.dptr);
|
|
|
|
dbm_delete (mbox->db, key);
|
|
|
|
*cur = (*cur)->next;
|
|
|
|
free (tmp->file);
|
|
|
|
free (tmp);
|
2000-12-20 21:41:21 +00:00
|
|
|
}
|
2002-01-16 21:43:58 +00:00
|
|
|
else
|
|
|
|
cur = &(*cur)->next;
|
|
|
|
}
|
|
|
|
return 0;
|
2000-12-20 21:41:21 +00:00
|
|
|
}
|
|
|
|
|
2002-01-16 19:47:28 +00:00
|
|
|
int
|
|
|
|
maildir_update_maxuid (mailbox_t * mbox)
|
2000-12-22 07:14:32 +00:00
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
char buf[64];
|
|
|
|
size_t len;
|
|
|
|
char path[_POSIX_PATH_MAX];
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
snprintf (path, sizeof (path), "%s/isyncmaxuid", mbox->path);
|
2002-01-16 21:22:43 +00:00
|
|
|
fd = open (path, O_WRONLY | O_CREAT, 0600);
|
2000-12-22 07:14:32 +00:00
|
|
|
if (fd == -1)
|
|
|
|
{
|
|
|
|
perror ("open");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2002-01-16 21:22:43 +00:00
|
|
|
/* write out the file */
|
|
|
|
snprintf (buf, sizeof (buf), "%u\n", mbox->maxuid);
|
|
|
|
len = write (fd, buf, strlen (buf));
|
|
|
|
if (len == (size_t) - 1)
|
2000-12-22 07:14:32 +00:00
|
|
|
{
|
2002-01-16 21:43:58 +00:00
|
|
|
perror ("write");
|
|
|
|
ret = -1;
|
2000-12-22 07:14:32 +00:00
|
|
|
}
|
|
|
|
|
2002-01-16 21:22:43 +00:00
|
|
|
if (close (fd))
|
2002-01-16 21:43:58 +00:00
|
|
|
ret = -1;
|
2000-12-22 07:14:32 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2001-11-12 23:03:33 +00:00
|
|
|
#define _24_HOURS (3600 * 24)
|
|
|
|
|
|
|
|
static void
|
|
|
|
maildir_clean_tmp (const char *mbox)
|
|
|
|
{
|
|
|
|
char path[_POSIX_PATH_MAX];
|
|
|
|
DIR *dirp;
|
|
|
|
struct dirent *entry;
|
|
|
|
struct stat info;
|
|
|
|
time_t now;
|
|
|
|
|
|
|
|
snprintf (path, sizeof (path), "%s/tmp", mbox);
|
|
|
|
dirp = opendir (path);
|
|
|
|
if (dirp == NULL)
|
|
|
|
{
|
2001-11-20 18:06:09 +00:00
|
|
|
fprintf (stderr, "maildir_clean_tmp: opendir: %s: %s (errno %d)\n",
|
|
|
|
path, strerror (errno), errno);
|
2001-11-12 23:03:33 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* assuming this scan will take less than a second, we only need to
|
|
|
|
* check the time once before the following loop.
|
|
|
|
*/
|
|
|
|
time (&now);
|
|
|
|
while ((entry = readdir (dirp)))
|
|
|
|
{
|
|
|
|
snprintf (path, sizeof (path), "%s/tmp/%s", mbox, entry->d_name);
|
|
|
|
if (stat (path, &info))
|
2001-11-20 18:06:09 +00:00
|
|
|
fprintf (stderr, "maildir_clean_tmp: stat: %s: %s (errno %d)\n",
|
|
|
|
path, strerror (errno), errno);
|
2001-11-12 23:03:33 +00:00
|
|
|
else if (S_ISREG (info.st_mode) && now - info.st_ctime >= _24_HOURS)
|
|
|
|
{
|
|
|
|
/* this should happen infrequently enough that it won't be
|
|
|
|
* bothersome to the user to display when it occurs.
|
|
|
|
*/
|
|
|
|
printf ("Warning: removing stale file %s\n", path);
|
|
|
|
if (unlink (path))
|
2001-11-20 18:06:09 +00:00
|
|
|
fprintf (stderr,
|
|
|
|
"maildir_clean_tmp: unlink: %s: %s (errno %d)\n",
|
|
|
|
path, strerror (errno), errno);
|
2001-11-12 23:03:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-01-16 19:47:28 +00:00
|
|
|
void
|
2001-11-12 23:03:33 +00:00
|
|
|
maildir_close (mailbox_t * mbox)
|
2000-12-20 21:41:21 +00:00
|
|
|
{
|
2002-01-16 19:47:28 +00:00
|
|
|
if (mbox->db)
|
|
|
|
dbm_close (mbox->db);
|
2000-12-22 07:14:32 +00:00
|
|
|
|
2002-01-16 19:47:28 +00:00
|
|
|
/* release the mutex on the mailbox */
|
|
|
|
maildir_unlock (mbox);
|
2000-12-22 07:14:32 +00:00
|
|
|
|
2001-11-12 23:03:33 +00:00
|
|
|
/* per the maildir(5) specification, delivery agents are supposed to
|
|
|
|
* set a 24-hour timer on items placed in the `tmp' directory.
|
|
|
|
*/
|
|
|
|
maildir_clean_tmp (mbox->path);
|
|
|
|
|
|
|
|
free (mbox->path);
|
|
|
|
free_message (mbox->msgs);
|
|
|
|
memset (mbox, 0xff, sizeof (mailbox_t));
|
|
|
|
free (mbox);
|
2000-12-20 21:41:21 +00:00
|
|
|
}
|
2000-12-21 23:10:18 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
maildir_set_uidvalidity (mailbox_t * mbox, unsigned int uidvalidity)
|
|
|
|
{
|
|
|
|
char path[_POSIX_PATH_MAX];
|
|
|
|
char buf[16];
|
|
|
|
int fd;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
snprintf (path, sizeof (path), "%s/isyncuidvalidity", mbox->path);
|
|
|
|
fd = open (path, O_WRONLY | O_CREAT | O_EXCL, 0600);
|
|
|
|
if (fd == -1)
|
|
|
|
{
|
|
|
|
perror ("open");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
snprintf (buf, sizeof (buf), "%u\n", uidvalidity);
|
|
|
|
|
|
|
|
ret = write (fd, buf, strlen (buf));
|
|
|
|
|
|
|
|
if (ret == -1)
|
2000-12-22 07:14:32 +00:00
|
|
|
perror ("write");
|
2000-12-21 23:10:18 +00:00
|
|
|
else if ((size_t) ret != strlen (buf))
|
|
|
|
ret = -1;
|
|
|
|
else
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
if (close (fd))
|
|
|
|
{
|
2000-12-22 07:14:32 +00:00
|
|
|
perror ("close");
|
2000-12-21 23:10:18 +00:00
|
|
|
ret = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
if (unlink (path))
|
|
|
|
perror ("unlink");
|
|
|
|
|
|
|
|
return (ret);
|
|
|
|
}
|