diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2004-12-26 10:26:14 +0000 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2004-12-26 10:26:14 +0000 |
commit | e003a174696f5628dc86cf7a2c85537d8d352c51 (patch) | |
tree | 92c3870ac5f8d1e767ed3c2d06ad2c3405d66ccd /mail/imp/files/httpd.conf.imp | |
parent | Upgrade to 2.0. (diff) |
Upgrade to 4.0.
The major changes compared to the IMP 3.x versions are:
* Much improved message format support through Horde's rewritten MIME
system.
* Many, many additional and improved mime viewers for attachments.
* Encrypting, signing, decrypting and verifying of signed and encrypted
messages (PGP/GPG and S/MIME).
* Message filters moved to a separate application (Ingo) to support more
filter backends and a more robust/comprehensive/easy-to-use UI.
* Full charset support in folders, mailbox, message and compose views.
* Mail folders in the left menu.
* Experimental support for virtual folders.
* Preview of attachments in compose view.
* Send attachments as links.
* Option to not save attachments with sent mail.
* Navigation through message and mailbox views with arrow keys.
* View all messages of a thread.
* HTML message composition with a cross-browser WYSIWIG editor.
* Fetching mails from other email accounts to view with IMP.
* Message previews in mailbox view.
* Prevent message loss during compositon due to session timeouts.
* Management of shared IMAP folders.
* Priority settings for composed messages.
* User management for supported IMAP servers.
* Integrated quota support.
* Support for mailing list headers.
* Ability to forward multiple messages at once.
* Downloading of all attachments from a message as a single ZIP file.
* Stripping individual attachments from messages.
* Alias and "tied to" addresses in user identities.
* Authentication with Horde credentials.
* Graphical emoticons and country flags in message view.
* Various caching improvements to drastically minimize duplicate IMAP
server->web server traffic.
This is a resurrection of the previous mail/imp, upgraded from mail/imp3.
PR: ports/75434
Submitted by: /me
Notes
Notes:
svn path=/head/; revision=125201
Diffstat (limited to 'mail/imp/files/httpd.conf.imp')
-rw-r--r-- | mail/imp/files/httpd.conf.imp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/mail/imp/files/httpd.conf.imp b/mail/imp/files/httpd.conf.imp new file mode 100644 index 000000000000..edd7b1df357e --- /dev/null +++ b/mail/imp/files/httpd.conf.imp @@ -0,0 +1,31 @@ +# This is included in Apache's httpd.conf for IMP +# +# For security, don't serve pages from the IMP configuration and +# library directories. +# +<Directory "/home/httpd/html/horde/imp/config"> + order deny,allow + deny from all +</Directory> +<Directory "/home/httpd/html/horde/imp/lib"> + order deny,allow + deny from all +</Directory> +<Directory "/home/httpd/html/horde/imp/locale"> + order deny,allow + deny from all +</Directory> +<Directory "/home/httpd/html/horde/imp/po"> + order deny,allow + deny from all +</Directory> +<Directory "/home/httpd/html/horde/imp/scripts"> + order deny,allow + deny from all +</Directory> +<Directory "/home/httpd/html/horde/imp/templates"> + order deny,allow + deny from all +</Directory> +# End of IMP configuration ================ + |