* initiall sieve listing support. authentication works now, we at least answer with...
[citadel.git] / citadel / techdoc / roadmap.txt
1 This isn't an official list of plans.  It's basically just some notes on where
2 we want to be going.  It's something to consult when sitting down to write
3 some code and deciding what to work on.
4
5
6  Recent goals achieved (in tree, not necessarily published yet)
7  --------------------------------------------------------------
8
9 * GroupDAV and "webcal" (icalendar over dav) support
10 * Updated schema for publishing Citadel address book data into an
11   external LDAP directory (still awaiting enterprise number from IANA)
12 * Internationalization (WebCit is now available in several languages.)
13
14  Goals to achieve during the 7.xx cycle
15  --------------------------------------
16
17 * Aliases, virtual addresses, and distribution lists
18   (We ought to be able to handle all three of these using the same facility.)
19
20 * CalDAV support (eventually -- since the protocol is so ugly and needlessly
21   complex, the draft authors are still arguing over small details -- once the
22   draft is finalized, we will implement enough of CalDAV to support the two
23   major client packages currently using it)
24
25 * Integration of CMS and social software features (more on this later).
26
27 * Further internationalization (for example, in the citserver).
28
29 * Per-user auto-handling of inbound mail.  Simple handlers such as an "out
30   of office reply" should be easy for users to set up.  More complex handlers
31   such as the automatic sorting of inbound mail into various folders based
32   on sender, subject, etc. should also be possible.
33
34 * Address books: build dialogs to integrate personal address books into
35   mail recipient boxes, auto-completion, etc.  Use AJAX for this.
36
37 * Better UI presentation for delegated access to mailboxes.  (In IMAP this
38   will be easy because of "other users namespace" support.)
39
40
41  Miscellaneous "wish list" items
42  -------------------------------
43
44 * Smart callback hook mechanism reducing traffic between citadel and the Database
45   to do things like:
46   * Alarms. Trigger popups etc. for users via the chat-keepalive
47   * Chat. don't query the db on and on for this. 
48   * Modify a list of rooms with new items for the logged in users to do things like:
49     * Print the number of new mails onto the Webcit menu
50     * change the roomlist / treeview according to new unread messages in the rooms
51
52 * bright new world to the tui too!
53   * Calendar mechanism
54   * vcards...
55
56 * more persistant css usage in webcit
57
58 * backtraces in the log in case of panics, etc.
59
60 * auto-login should move from compile to installtime.
61
62 * scheduled restarts there should be a way to notify all users 
63    (whether via imap or webcit) that citadel is going to be unavailable.
64    
65 * there should be a way to set a 'service unavailable because of' message, 
66   for people connecting via webcit, so they can see this is a scheduled 
67   downtime (so they don't take further actions like anoying the admin
68   (you) via phone or restart citadel...
69
70 * there should be a way to keep citadel from starting while you're db recovering etc.
71   (perhaps something like the pre-shutdown state would be cool, with a 
72    message? so you tell it "sysadmin is reworking the database" as param
73    to the server, it will close the db, but keep open the port, and 
74    print out your message as error message. this should last until citserver
75    receives a kill signal, and then terminates.)
76
77 * citserver should bypass some bdb errors and symptoms. it should remember 
78   the actual berkeley db version in its state file, and in case of an up/downgrade
79   moan this to the user / logfile. bdb upgrades should trigger a mail to aide.
80
81 * easy management of external room access. there should be a gui way for room aliases.
82
83 * backcheck of aliases. citadel must check, if on save of the aliases there will be a 
84   race between other users / users aliases. 
85   -> citadel must check while saving the aliases, if the mail delivers yet to another 
86      person than the one just saving the aliases. if yes, it should do something like 
87      mail to foo@bar.org is already delivered to joeblow@bar.org
88
89 * uid to name in webcit / imap; citadel shouldn't display something like uid.room
90   to other users, if they share it to others. it should do something like username/room
91   where username should be a floor.
92
93 * webcit should be made more resistant to html injections, especialy the chat window.