1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
IMHO
====
This is IMHO - IMAP Mail HOst, a Webmail program
for the Roxen webserver (http://www.roxen.com/).
IMHO is Copyright
Stefan Wallstrm <stewa@lysator.liu.se>
& Bosse Lincoln <lincoln@lysator.liu.se> 1998-2000
See the file "LICENSE" for license.
IMPORTANT!
There are notes on how to make IMHO work properly with HTTPS and early
1.3 Roxens later in this file.
REPORTING BUGS:
Please use BugCrunch, http://community.roxen.com/crunch/ , for reporting bugs.
MAILING LIST:
There's a mailing-list for IMHO discussions. The list address is
imho@lysator.liu.se.
To subscribe, send a mail to imho-request@lysator.liu.se with
"subscribe" as subject. ("unsubscribe" to unsubscribe.).
=> You'll have to subscribe to the list to be able to post to it. <=
For more info: http://www.lysator.liu.se/~stewa/IMHO/
INSTALLATION:
* You need Roxen 1.3 (1.3rel2 and later recomended) or later to
run IMHO.
* Copy imho.pike to some directory in your Roxen modulepath and
add the module to your virtual server. If you have a running
IMAP-server you should be done after changing a few of the
configuration variables. It's likely that the "Default mail domain",
"IMAP server address" and "SMTP server address" variables need
to be changed.
"Default IMAP mail folder path" is often an empty string or ~/mail/
* You also have to make sure that the following modules are enabled for
this virtual server:
"Main RXML parser"
"Content Types" (optional, but _very_ useful when sending attachments)
"Killframe" (optional, will remove the problem of IMHO residing in
a subframe after a user idle timeout)
* In the directory FastIMHO/ there is a Pike module which you can compile
and add to your system to increase speed. This will make fetching the
contents of a mailbox many times faster!
Place the language-files (imho_*.pike) wherever you want.
NOTE!
HTTPS:
In order to make IMHO work with ssl3 (https) and a Roxen version earlier
than 1.3rel2 (1.3.121) you have to apply the following modification to
server/protocols/ssl3.pike :
In the function 'send_result' change
if((file->file == -1) || file->leave_me)
{
my_fd = 0;
file = 0;
return;
}
into
if((file->file == -1) || file->leave_me)
{
if(do_not_disconnect) {
file = 0;
pipe = 0;
return;
}
my_fd = 0;
file = 0;
return;
}
|