summaryrefslogtreecommitdiff
path: root/mail/cyrus-imapd24/files/patch-dg
diff options
context:
space:
mode:
Diffstat (limited to 'mail/cyrus-imapd24/files/patch-dg')
-rw-r--r--mail/cyrus-imapd24/files/patch-dg37
1 files changed, 0 insertions, 37 deletions
diff --git a/mail/cyrus-imapd24/files/patch-dg b/mail/cyrus-imapd24/files/patch-dg
deleted file mode 100644
index 5c54d21287d8..000000000000
--- a/mail/cyrus-imapd24/files/patch-dg
+++ /dev/null
@@ -1,37 +0,0 @@
-Index: tools/mkimap
-diff -u tools/mkimap.orig tools/mkimap
---- tools/mkimap.orig Mon Mar 10 03:39:36 2003
-+++ tools/mkimap Fri Mar 21 17:24:10 2003
-@@ -61,6 +61,9 @@
-
- $imapdconf = shift || "/etc/imapd.conf";
-
-+$cyrus_user = $ENV{CYRUS_USER} || "%%CYRUS_USER%%";
-+$cyrus_group = $ENV{CYRUS_GROUP} || "%%CYRUS_GROUP%%";
-+
- open CONF, $imapdconf or die "can't open $imapdconf";
- print "reading configure file...\n";
- while (<CONF>) {
-@@ -86,6 +89,7 @@
-
- print "configuring $d...\n";
-
-+mkdir $d, 0755;
- chdir $d or die "couldn't change to $d";
-
- mkdir "proc", 0755;
-@@ -95,11 +99,14 @@
- mkdir "msg", 0755;
- mkdir "ptclient", 0755;
-
-+system "/usr/sbin/chown -R $cyrus_user:$cyrus_group .";
-+
- while ($part = shift @parts) {
- print "creating $part...\n";
- mkdir $part, 0755;
- chdir $part or die "couldn't change to partition $part";
- mkdir "stage.", 0755;
-+ system "/usr/sbin/chown -R $cyrus_user:$cyrus_group $part";
- }
-
- print "done\n";