This is a discussion on Re: [courier-users] How to disable SSL requirements for webadmin within the Courier-Imap forums, part of the Mail Servers and Related category; Michelle Konzack wrote: > I am running Debian/Sarge and I habe no INSTALL file. > Can anyone tell me ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Michelle Konzack wrote:
> I am running Debian/Sarge and I habe no INSTALL file. > Can anyone tell me how to disable SSL for webadmin? > I need this only for my local network and no public > access so SSL is overkill. First, I'd recommend keeping SSL anyway, create a simple page that redirects you to https://yourserver/cgi-bin/webadmin so you don't have to bother typing the https every time. Looking at the webadmin source: display_form("unsecure.html") unless $ENV{'HTTPS'} || $ENV{'REMOTE_ADDR'} eq $ENV{'SERVER_ADDR'} || -f "$sysconfdir/webadmin/unsecureok"; So a simple: touch /etc/courier/webadmin/unsecureok should do the trick. Of course, your $sysconfdir may be different. Jay -- Jay Lee Network / Systems Administrator Information Technology Dept. Philadelphia Biblical University -- ------------------------------------------------------- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf _______________________________________________ courier-users mailing list courier-users@lists.sourceforge.net Unsubscribe: https://lists.sourceforge.net/lists/.../courier-users |