[dovecot-cvs] dovecot/src/deliver deliver.c,1.60,1.61
tss at dovecot.org
tss at dovecot.org
Fri Mar 30 16:40:32 EEST 2007
- Previous message: [dovecot-cvs] dovecot/src/plugins/expire expire-tool.c,1.5,1.6
- Next message: [dovecot-cvs] dovecot/src/auth auth-request.c, 1.93, 1.94 auth-request.h, 1.34, 1.35 auth-worker-client.c, 1.31, 1.32 db-sql.c, 1.11, 1.12 db-sql.h, 1.4, 1.5 mech-apop.c, 1.24, 1.25 mech-cram-md5.c, 1.25, 1.26 mech-digest-md5.c, 1.43, 1.44 mech-ntlm.c, 1.27, 1.28 mech-otp.c, 1.1, 1.2 mech-rpa.c, 1.28, 1.29 mech-skey.c, 1.1, 1.2 passdb-sql.c, 1.31, 1.32 passdb.c, 1.47, 1.48 passdb.h, 1.37, 1.38 userdb-static.c, 1.23, 1.24
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /var/lib/cvs/dovecot/src/deliver
In directory talvi:/tmp/cvs-serv19658/deliver
Modified Files:
deliver.c
Log Message:
Removed mail_storage_create_with_data(). mail_storage_create() with
driver=NULL behaves the same way. Removed parameters from
mail_storage.create(), they're now put into the storage structure before
calling create().
Index: deliver.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/deliver/deliver.c,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -d -r1.60 -r1.61
--- deliver.c 26 Mar 2007 00:10:08 -0000 1.60
+++ deliver.c 30 Mar 2007 13:40:30 -0000 1.61
@@ -660,8 +660,8 @@
/* FIXME: how should we handle namespaces? */
mail_storage_parse_env(&flags, &lock_method);
- storage = mail_storage_create_with_data(mail_env, destination,
- flags, lock_method);
+ storage = mail_storage_create(NULL, mail_env, destination,
+ flags, lock_method);
if (storage == NULL) {
i_fatal_status(EX_TEMPFAIL,
"Failed to create storage for '%s' with mail '%s'",
- Previous message: [dovecot-cvs] dovecot/src/plugins/expire expire-tool.c,1.5,1.6
- Next message: [dovecot-cvs] dovecot/src/auth auth-request.c, 1.93, 1.94 auth-request.h, 1.34, 1.35 auth-worker-client.c, 1.31, 1.32 db-sql.c, 1.11, 1.12 db-sql.h, 1.4, 1.5 mech-apop.c, 1.24, 1.25 mech-cram-md5.c, 1.25, 1.26 mech-digest-md5.c, 1.43, 1.44 mech-ntlm.c, 1.27, 1.28 mech-otp.c, 1.1, 1.2 mech-rpa.c, 1.28, 1.29 mech-skey.c, 1.1, 1.2 passdb-sql.c, 1.31, 1.32 passdb.c, 1.47, 1.48 passdb.h, 1.37, 1.38 userdb-static.c, 1.23, 1.24
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the dovecot-cvs
mailing list