dovecot-2.2: lib-master: Ignore /Volumes and /private/tmp mountp...

dovecot at dovecot.org dovecot at dovecot.org
Sat Jan 5 01:14:35 EET 2013


details:   http://hg.dovecot.org/dovecot-2.2/rev/265adb00eacd
changeset: 15553:265adb00eacd
user:      Timo Sirainen <tss at iki.fi>
date:      Sat Dec 08 11:13:51 2012 +0200
description:
lib-master: Ignore /Volumes and /private/tmp mountpoints with OSX (only).

diffstat:

 src/lib-master/mountpoint-list.c |  5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diffs (15 lines):

diff -r 657cb4c35a0e -r 265adb00eacd src/lib-master/mountpoint-list.c
--- a/src/lib-master/mountpoint-list.c	Sat Dec 08 11:12:10 2012 +0200
+++ b/src/lib-master/mountpoint-list.c	Sat Dec 08 11:13:51 2012 +0200
@@ -57,7 +57,10 @@
 	"/proc",
 	"/var/run",
 	"/run",
-	"/Volumes", /* OSX */
+#ifdef __APPLE__
+	"/Volumes",
+	"/private/tmp",
+#endif
 	NULL
 };
 


More information about the dovecot-cvs mailing list