summaryrefslogtreecommitdiff
path: root/fs_selfadmin/README
diff options
context:
space:
mode:
authorjeff <jeff>2001-10-18 15:30:08 +0000
committerjeff <jeff>2001-10-18 15:30:08 +0000
commitd80be4d3bb68c34eb4e90b5b137b0d42d73f78d8 (patch)
tree1c1abb8d66fca50bd99ff53613defbd8e045cef3 /fs_selfadmin/README
parentfba31d6a0954ccfbb1d491ec018f0513d2a4ee2a (diff)
rudimentary self-admin instructions
Diffstat (limited to 'fs_selfadmin/README')
-rw-r--r--fs_selfadmin/README27
1 files changed, 27 insertions, 0 deletions
diff --git a/fs_selfadmin/README b/fs_selfadmin/README
new file mode 100644
index 000000000..d9857f054
--- /dev/null
+++ b/fs_selfadmin/README
@@ -0,0 +1,27 @@
+
+This collection of files implements a 'self-administered mail service.'
+Configuration is similar to fs_signupd
+
+Additionally you will need to modify the database:
+
+CREATE TABLE svc_acct_admin (
+ svcnum int primary key,
+ adminsvc int not null
+);
+
+creating both as keys might be good
+
+(and perform the dbdef-create)
+
+
+As it exists now, a package containing one svc_domain, at least one
+svc_acct_admin, and other services can have its svc_acct's and svc_forward's
+manipulated by the svc_acct referenced by a svc_acct_admin in the package.
+
+One svc_acct may be referenced as svc_acct_admin for multiple packages.
+
+fs_mailadmin_server contains hard coded references to service numbers which
+will require editing for your system.
+
+It's not a lot, but it might provide inspiration.
+