summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--imp3/motd.php.in19
-rw-r--r--imp3/servers.php.in89
2 files changed, 108 insertions, 0 deletions
diff --git a/imp3/motd.php.in b/imp3/motd.php.in
new file mode 100644
index 0000000..80b1876
--- /dev/null
+++ b/imp3/motd.php.in
@@ -0,0 +1,19 @@
+<P align="center" class="light">
+<!-- Adding attachments doesn't work currently!<BR> --!>
+<!-- Use one of the alternative programs below if sending attachments is needed. --!>
+</P>
+<P align="center" class="light">
+In case of problems is here a list of other (older) IMP sites<BR>
+(remember to select your own organisation when logging in...!):<BR>
+<A href="http://imp.jones.dk/" target="_top" class="helpitem">dr. Jones</A>,
+<A href="http://webmail.a-host.dk/imp/" target="_top" class="helpitem">A-host</A>,
+<A href="http://www.homebase.dk/imp/" target="_top" class="helpitem">Homebase</A>,
+<A href="http://woody.macvaerk.com/imp/" target="_top" class="helpitem">Macvaerk</A>.
+</P>
+<P align="center" class="light">
+There's also a few alternative webmail programs<BR>
+(less secure, but might work better in some situations):<BR>
+<A href="http://webtools.jones.dk/nocc/" target="_top" class="helpitem">NOCC</A>
+and AeroMail
+(<A href="http://webtools.jones.dk/aeromail/" target="_top" class="helpitem">jones.dk</A>/<A href="http://www.homebase.dk/aeromail/" target="_top" class="helpitem">homebase.dk</A>).<BR>
+</P>
diff --git a/imp3/servers.php.in b/imp3/servers.php.in
new file mode 100644
index 0000000..e2453d5
--- /dev/null
+++ b/imp3/servers.php.in
@@ -0,0 +1,89 @@
+<?php
+$servers['_prompt'] = array(
+ 'name' => 'Choose a mail server:'
+);
+$servers['jones'] = array(
+ 'name' => 'dr. Jones',
+ 'server' => 'mail.jones.dk',
+ 'port' => 143,
+ 'protocol' => 'imap',
+ 'folders' => 'mail/',
+ 'namespace' => '',
+ 'maildomain' => 'jones.dk',
+ 'smtphost' => 'localhost',
+ 'realm' => 'jones.dk',
+ 'preferred' => array(
+ "jones.horde.jones.dk",
+ "jones.horde.homebase.dk",
+ "jones.horde.biks.dk"
+ )
+);
+$servers['homebase'] = array(
+ 'name' => 'Homebase',
+ 'server' => 'mail.homebase.dk',
+ 'port' => 143,
+ 'protocol' => 'imap',
+ 'folders' => 'mail/',
+ 'namespace' => '',
+ 'maildomain' => 'homebase.dk',
+ 'smtphost' => 'localhost',
+ 'realm' => 'homebase.dk',
+ 'preferred' => array(
+ "homebase.horde.jones.dk",
+ "homebase.horde.homebase.dk",
+ "homebase.horde.biks.dk"
+ )
+);
+$servers['macvaerk'] = array(
+ 'name' => 'Macvaerk',
+ 'server' => 'mail.macvaerk.com',
+ 'port' => 143,
+ 'protocol' => 'imap',
+ 'folders' => 'mail/',
+ 'namespace' => '',
+ 'maildomain' => 'macvaerk.com',
+ 'smtphost' => 'localhost',
+ 'realm' => 'macvaerk.com',
+ 'preferred' => array(
+ )
+);
+$servers['a-host'] = array(
+ 'name' => 'A-host',
+ 'server' => 'mail2.a-host.dk',
+ 'port' => 143,
+ 'protocol' => 'imap',
+ 'folders' => 'mail/',
+ 'namespace' => '',
+ 'maildomain' => 'a-host.dk',
+ 'smtphost' => 'localhost',
+ 'realm' => 'a-host.dk',
+ 'preferred' => array(
+ )
+);
+$servers['lab'] = array(
+ 'name' => 'Lab',
+ 'server' => '107b.dk',
+ 'port' => 143,
+ 'protocol' => 'imap',
+ 'folders' => 'mail/',
+ 'namespace' => '',
+ 'maildomain' => '107b.dk',
+ 'smtphost' => 'localhost',
+ 'realm' => '107b.dk',
+ 'preferred' => array(
+ )
+);
+$servers['louiz'] = array(
+ 'name' => 'Louiz',
+ 'server' => 'louiz.dk',
+ 'port' => 143,
+ 'protocol' => 'imap',
+ 'folders' => 'mail/',
+ 'namespace' => '',
+ 'maildomain' => 'louiz.dk',
+ 'smtphost' => 'localhost',
+ 'realm' => 'louiz.dk',
+ 'preferred' => array(
+ )
+);
+?>