>From my experience, it is similar..
Some points to mention:
You need to use SuExec, so setting up a virtual host seems to be the way
to go if you already have a web server running.
Some starting points:
http://dspamwiki.expass.de/Web_Interface
http://gentoo-wiki.com/index.php?search=dspam&sourceid=Mozilla-search&offset=0&offset=0

Also, below is my Apache virutalhost 2.2.4 config on Ubuntu 7.10


<VirtualHost *>
DocumentRoot "/var/www/webui"
SuexecUserGroup dspam dspam
<Directory /var/www/webui>
    AuthzLDAPAuthoritative Off
    Options ExecCGI
    Options -Indexes
    Addhandler cgi-script .cgi
    DirectoryIndex dspam.cgi
    AllowOverride None
    Order deny,allow
    Deny from all

    AuthBasicProvider ldap

    AuthType Basic
    AuthName "DSPAM Control Center"
    AuthLDAPURL
ldap://localhost/ou=Users,dc=example,dc=com?mail?sub?(objectClass=CourierMailAccount)
    AuthLDAPBindDN cn=admin,dc=example,dc=com
    AuthLDAPBindPassword BindPassword
    require valid-user
    Satisfy Any
  </Directory>
</VirtualHost>

David

Brian Austin - Versa Net wrote:
> Hi,
> 
> I'm setting up the dspam as a relay. Just found "relay.txt" after may
> days of getting nowhere. hmpf. I'll ditch my exim efforts and try for
> postfix.
> 
> I am at a total loss as to how to set up the webui in 3.8. the
> instructions I am finding relate to 3.4, 3.6 and dont seem to relate.
> 
> how to set up the webui (on apache2)?
> 
> thanks
> 
> brian
> 
> 
> 
> 
> 

Reply via email to