- Add SSL support when the 'ssl' option is set. - Use the options framework to handle ipv6 support ('ipv6' option). - Fix permissions of files copied into the user directory from the data directory under /usr/pkg (i.e., give write permissions to them). Otherwise, the sample Inbox folder is copied with mode 444 and you get multiple warnings from Evolution saying that it can't update the folder. Evolution 2.x is - at last - usable!
13 lines
368 B
Text
13 lines
368 B
Text
$NetBSD: patch-ab,v 1.9 2004/10/29 14:57:15 jmmv Exp $
|
|
|
|
--- ./mail/em-migrate.c.orig 2004-10-11 17:24:34.000000000 +0200
|
|
+++ ./mail/em-migrate.c
|
|
@@ -1447,7 +1447,7 @@ cp (const char *src, const char *dest, g
|
|
ut.actime = st.st_atime;
|
|
ut.modtime = st.st_mtime;
|
|
utime (dest, &ut);
|
|
- chmod (dest, st.st_mode);
|
|
+ chmod (dest, st.st_mode | S_IWUSR);
|
|
|
|
return 0;
|
|
|