summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJerry Alexandratos <jerry@gentoo.org>2001-02-15 21:40:34 +0000
committerJerry Alexandratos <jerry@gentoo.org>2001-02-15 21:40:34 +0000
commit7675c9afb8a0756d2830d03dcc59e5a9241e02a3 (patch)
tree6536b5bdffad790831738a868946e4408f71a026 /net-mail
parentNew version of postfix. Includes config files to deliver to ~/.maildir. (diff)
downloadhistorical-7675c9afb8a0756d2830d03dcc59e5a9241e02a3.tar.gz
historical-7675c9afb8a0756d2830d03dcc59e5a9241e02a3.tar.bz2
historical-7675c9afb8a0756d2830d03dcc59e5a9241e02a3.zip
Added mailbase portage. Basically creates /etc/mail and
/etc/mail/aliases.
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/mailbase/files/aliases33
-rw-r--r--net-mail/mailbase/mailbase-0.00.ebuild18
2 files changed, 51 insertions, 0 deletions
diff --git a/net-mail/mailbase/files/aliases b/net-mail/mailbase/files/aliases
new file mode 100644
index 000000000000..ea8350591659
--- /dev/null
+++ b/net-mail/mailbase/files/aliases
@@ -0,0 +1,33 @@
+# Basic system aliases -- these MUST be present.
+MAILER-DAEMON: postmaster
+postmaster: root
+
+# General redirections for pseudo accounts.
+adm: root
+bin: root
+daemon: root
+exim: root
+lp: root
+mail: root
+named: root
+nobody: root
+postfix: root
+
+# Well-known aliases -- these should be filled in!
+# root:
+# operator:
+
+# Standard RFC2142 aliases
+abuse: postmaster
+ftp: root
+hostmaster: root
+news: usenet
+noc: root
+security: root
+usenet: root
+uucp: root
+webmaster: root
+www: webmaster
+
+# trap decode to catch security attacks
+# decode: /dev/null
diff --git a/net-mail/mailbase/mailbase-0.00.ebuild b/net-mail/mailbase/mailbase-0.00.ebuild
new file mode 100644
index 000000000000..e1c0c8c84559
--- /dev/null
+++ b/net-mail/mailbase/mailbase-0.00.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2000 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# Author Jerry Alexandratos <jerry@gentoo.org>
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mailbase/mailbase-0.00.ebuild,v 1.1 2001/02/15 21:40:34 jerry Exp $
+
+A=""
+S=${WORKDIR}
+DESCRIPTION="MTA layout package"
+SRC_URI=""
+HOMEPAGE="http://www.gentoo.org/"
+
+RDEPEND="virtual/mta"
+
+src_install() {
+ dodir /etc/mail
+ insinto /etc/mail
+ doins ${FILESDIR}/aliases
+}