[dovecot-cvs] dovecot/src/master mail-process.c,1.96.2.4,1.96.2.5
cras at dovecot.org
cras at dovecot.org
Sat Jul 1 20:44:47 EEST 2006
- Previous message: [dovecot-cvs] dovecot/src/lib-sql driver-mysql.c, 1.16.2.4,
1.16.2.5 driver-pgsql.c, 1.10.2.1, 1.10.2.2 driver-sqlite.c,
1.5.2.2, 1.5.2.3 sql-api-private.h, 1.6.2.1, 1.6.2.2 sql-api.c,
1.8.2.1, 1.8.2.2 sql-api.h, 1.8.2.1, 1.8.2.2
- Next message: [dovecot-cvs] dovecot/src/master mail-process.c,1.101,1.102
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /var/lib/cvs/dovecot/src/master
In directory talvi:/tmp/cvs-serv26812
Modified Files:
Tag: branch_1_0
mail-process.c
Log Message:
If namespace's location field wasn't set, the default location was supposed
to be used.
Index: mail-process.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/master/mail-process.c,v
retrieving revision 1.96.2.4
retrieving revision 1.96.2.5
diff -u -d -r1.96.2.4 -r1.96.2.5
--- mail-process.c 27 Jun 2006 21:03:51 -0000 1.96.2.4
+++ mail-process.c 1 Jul 2006 17:44:45 -0000 1.96.2.5
@@ -161,7 +161,7 @@
for (i = 1; ns != NULL; i++, ns = ns->next) {
t_push();
- location = ns->location != NULL ? ns->location :
+ location = *ns->location != '\0' ? ns->location :
default_location;
location = expand_mail_env(location, table);
env_put(t_strdup_printf("NAMESPACE_%u=%s", i, location));
- Previous message: [dovecot-cvs] dovecot/src/lib-sql driver-mysql.c, 1.16.2.4,
1.16.2.5 driver-pgsql.c, 1.10.2.1, 1.10.2.2 driver-sqlite.c,
1.5.2.2, 1.5.2.3 sql-api-private.h, 1.6.2.1, 1.6.2.2 sql-api.c,
1.8.2.1, 1.8.2.2 sql-api.h, 1.8.2.1, 1.8.2.2
- Next message: [dovecot-cvs] dovecot/src/master mail-process.c,1.101,1.102
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the dovecot-cvs
mailing list