adjusted for changes to jinetd
[org.ibex.mail.git] / src / org / ibex / mail / Main.java
1 // Copyright 2000-2005 the Contributors, as shown in the revision logs.
2 // Licensed under the Apache Public Source License 2.0 ("the License").
3 // You may not use this file except in compliance with the License.
4
5 package org.ibex.mail;
6 import org.ibex.mail.target.*;
7 import org.ibex.mail.protocol.*;
8 import org.ibex.util.*;
9 import org.ibex.jinetd.*;
10 import org.ibex.jetty.*;
11 import org.ibex.io.*;
12 import java.io.*;
13 import java.net.*;
14 import java.util.*;
15 import org.ibex.crypto.*;
16
17 public class Main implements Listener {
18
19     public boolean accept(Connection conn) {
20         try {
21             if      (conn.getLocalPort() == 143)  new IMAP.Listener(auth).handleRequest(conn);
22             else if (conn.getLocalPort() == 25)   new SMTP.Server().handleRequest(conn);
23             else if (conn.getLocalPort() == 119)  new NNTP.Listener(auth).handleRequest(conn);
24             else if (conn.getLocalPort() == 8099) GMail.handleRequest(conn);
25             else if (conn.getLocalPort() == 8080) Jetty.instance().accept(conn);
26             else if (conn.getLocalPort() == 80)   Jetty.instance().accept(conn);
27             else return false;
28             return true;
29         } finally {
30             conn.close();
31         }
32     }
33
34     private static final Auth auth = new Auth();
35     private static class Auth implements Login {
36         public Account anonymous() { return null; }
37         public Object login(String user, String pass, Class protocol) {
38             //if (protocol == IMAP.class && user.endsWith("@gmail.com")) return GMail.getGMail(user, pass).getIMAP();
39             return login(user, pass);
40         }
41         public Account login(String user, String pass) {
42             //if (user.indexOf("@gmail.com") != -1) return GMail.getGMail(user, pass);
43             if (!EtcPasswd.verify(user, pass)) return null;
44             final Mailbox root =
45                 FileBasedMailbox.getFileBasedMailbox(Mailbox.STORAGE_ROOT + "/user", true);
46             return new Account(user, null, root.slash(user, true)){
47                     public Mailbox getMailbox(Class protocol) {
48                         /*
49                         if (protocol == NNTP.class) {
50                             final Mailbox arch = new MailmanArchives();
51                             return new Mailbox.Default() {
52                                     public void add(Message m) { throw new RuntimeException("not supported"); }
53                                     public void add(Message m, int i) { throw new RuntimeException("not supported"); }
54                                     public int              uidValidity()  { return 1; }
55                                     public Mailbox.Iterator iterator()     { return null; }
56                                     public int              uidNext()      { return 0; }
57                                     public String[] children() { return new String[] { "us" }; }
58                                     public Mailbox slash(String name, boolean create) { return arch; }
59                                 };
60                         } else {
61                         */
62                             return super.getMailbox(protocol);
63                             //}
64                     }
65                 };
66         }
67     }
68
69 }