summaryrefslogtreecommitdiff
path: root/mail/cyrus-imapd22/files/patch-dg
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2014-06-30 11:31:04 +0000
committerRene Ladan <rene@FreeBSD.org>2014-06-30 11:31:04 +0000
commit8c108f1a312eb49c4820e65179aaecc40b002c51 (patch)
tree042dba241a120e8ea610123980307913c3c35b31 /mail/cyrus-imapd22/files/patch-dg
parent- reset maintainer due to multiple timeouts [1] (diff)
Remove expired ports:
2014-06-30 mail/cyrus-imapd2: Cyrus IMAPd 2.1.X have been deprecated, consider using 2.4.X. 2014-06-30 mail/cyrus-imapd22: No further releases of 2.2.X are planned, consider using 2.4.X.
Notes
Notes: svn path=/head/; revision=359828
Diffstat (limited to 'mail/cyrus-imapd22/files/patch-dg')
-rw-r--r--mail/cyrus-imapd22/files/patch-dg37
1 files changed, 0 insertions, 37 deletions
diff --git a/mail/cyrus-imapd22/files/patch-dg b/mail/cyrus-imapd22/files/patch-dg
deleted file mode 100644
index 3a03d9c9325d..000000000000
--- a/mail/cyrus-imapd22/files/patch-dg
+++ /dev/null
@@ -1,37 +0,0 @@
-Index: tools/mkimap
-diff -u tools/mkimap.orig tools/mkimap
---- tools/mkimap.orig Fri Dec 2 04:12:34 2005
-+++ tools/mkimap Sat Apr 1 01:13:06 2006
-@@ -90,6 +90,9 @@
-
- $imapdconf = shift || "/etc/imapd.conf";
-
-+$cyrus_user = $ENV{CYRUS_USER} || "%%CYRUS_USER%%";
-+$cyrus_group = $ENV{CYRUS_GROUP} || "%%CYRUS_GROUP%%";
-+
- push @configs, $imapdconf;
-
- while ($conf = shift @configs) {
-@@ -100,6 +103,7 @@
-
- print "configuring $d...\n";
-
-+mkdir $d, 0755;
- chdir $d or die "couldn't change to $d";
-
- mkdir "proc", 0755 || warn "can't create $d/proc: $!";
-@@ -109,11 +113,14 @@
- mkdir "msg", 0755 || warn "can't create $d/msg: $!";
- mkdir "ptclient", 0755 || warn "can't create $d/ptclient: $!";
-
-+system "/usr/sbin/chown -R $cyrus_user:$cyrus_group .";
-+
- while ($part = shift @parts) {
- print "creating $part...\n";
- mkdir $part, 0755 || warn "can't create $part: $!";
- chdir $part or die "couldn't change to partition $part";
- mkdir "stage.", 0755 || warn "can't create $part/stage.: $!";
-+ system "/usr/sbin/chown -R $cyrus_user:$cyrus_group $part";
- }
-
- print "done\n";