• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Search results

  1. A

    Update to 8.1.1 - AWStats icons still not showing up...

    I just updated from 8.1 to 8.1.1 and it worked pretty well. But the AWStats icons are still not showing up... Do you have any easy tips to make it work? Thanks
  2. A

    Horde: how to forward "http" to "https"

    Try to add this in the webmail.conf: Options +FollowSymLinks Or even deactivate ModSec for webmail (it's not really usefull and some problems happens if you use the gotroot rules, even with the default exclude files) by adding: SecFilterEngine Off SecFilterScanPOST Off And also...
  3. A

    Horde: how to forward "http" to "https"

    Alright for the .htaccess, it's not working... But the method below works perfectly and is cleaner: 1. Create a text file "webmail.conf" in /etc/httpd/conf.d 2. Put this in the file: <Directory /usr/share/psa-horde> RewriteEngine on RewriteCond %{SERVER_PORT} !^443$ RewriteRule (.*)...
  4. A

    Horde: how to forward "http" to "https"

    It doesn't need any configuration... Maybe the .htaccess isn't understood by the webserver. I've to try it on my host, and I'll let you know later.
  5. A

    Link directories across domains

    You may configure the open_basedir restriction... Create a vhost.conf file in /var/www/vhosts/yourdomain.com/conf with something like that: <Directory /var/www/vhosts/$domain/httpdocs> <IfModule sapi_apache2.c> php_admin_flag engine on php_admin_flag safe_mode off php_admin_value...
  6. A

    Horde: how to forward "http" to "https"

    Try a rule this way in a .htaccess in the /usr/share/psa-horde directory: RewriteEngine on RewriteCond %{SERVER_PORT} !^443$ RewriteRule (.*) https://webmail.domain.com/$1 [R=301,L] This should work...
  7. A

    Access webmail via IP address (without domain name)

    Here we go!! This method is working for subdomains: accessing webmail via mysub.domain.tld/webmail ... I added a .htaccess file in the directory which refers to /: RewriteEngine on RewriteRule ^(.*)$ /webmail/$1 So, finaly, I'm using this for a shared SSL...
  8. A

    Access webmail via IP address (without domain name)

    I finally ended up with this: ---------------------------- <Directory /usr/share/psa-horde> <IfModule sapi_apache2.c> php_admin_flag engine on php_admin_flag safe_mode off php_admin_value open_basedir...
  9. A

    Access webmail via IP address (without domain name)

    I tried to add an Alias to the default host for my IP, via a vhost.conf file containing: Alias /webmail /usr/share/psa-horde In order to access webmail via: IP.IP.IP.IP/webmail It seems to work, but I got some PHP errors: Warning: include_once(PEAR.php) [function.include-once]...
  10. A

    Access webmail via IP address (without domain name)

    Changed to: Access webmail via /webmail/ directory (for shared ssl) Hi, I was thinking if it was possible to access Horde without domain... Explained: - Usually, webmail can be accessed via https://webmail.domain.tld - Is it be possible to access it via https://IP.IP.IP.IP/webmail for...
  11. A

    Only one IP - SSL

    That's what I thought! Now, what I want to do is to have one secured domain, something like SECURE.DOMAIN.TLD. Which in Plesk config will be an independant domain (not a subdomain). But how can I securely access the webmail? As I have to use SECURE.DOMAIN.TLD and not...
  12. A

    Only one IP - SSL

    Hi, I use only one IP on a PSA Box... I host multiple domains on the same IP. I want to add a certificate to a new domain (only one domain, like secure.domain.tld) for true secure access to webmail/PSA. So, if I buy a SSL certificate for only the secure.domain.tld, will it work for...
  13. A

    The Plesk Web Server service on host as.xxxxx.com is down.

    Don't you think it's the proof that your watchdog is doing its job? - when apache stops, it sends an alert - then it tries to start apache again - and if it works, it sends an alert again -----UPDATE----- Haaa, sorry fot this "form of" stupid answer, I didn't understand at first that...
  14. A

    FTP fails after LIST

    I personnaly don't use PSA Firewall module. I prefer to use my own IPTable rules. Good to know you found a solution to your problem!
  15. A

    FTP fails after LIST

    It's probably not this, but it looks like an FTP-data connection not being able to be established... And as far as I know, it depends of the configuration of your firewall on your server: - try a passiv connection - check in your firewall rules if both port 20/21 are opened - check in your...
  16. A

    mod_security - rule for the whole webmail.*

    I finally ended up with only this rule concerning Horde/IMP: <Directory /usr/share/psa-horde> SecFilterRemove 300013 SecFilterRemove 300015 SecFilterRemove 300016 SecFilterRemove 300018 SecFilterRemove 300040 </Directory> I put it in exclude.conf (mod_security config files). It works...
  17. A

    mod_security - rule for the whole webmail.*

    I think I maybe found a solution here: http://atomicrocketturtle.com/forum/viewtopic.php?t=1450 Have to try to put something like that: <Directory /usr/share/psa-horde> SecFilterRemove 300018 SecFilterRemove 300040 </Directory>
  18. A

    mod_security - rule for the whole webmail.*

    Hi, I was wondering if it was possible to make an exclude rule for mod_security for the whole webmail on PSA... What I mean is defining a rule that'll exclude some Filters when matching something like "*webmail.*". Is it possible? In an other way, would it be possible to use an...
  19. A

    slow smtp

    I don't really understand your question... But maybe you should check if you don't get timeout on RBL servers.
  20. A

    Back up - Restore question??

    I've been into trouble to get back a little file from full PSA's Dump. It's good to backup a full server, but not to extract just some files. So, I get to the fact that I've to also do some TAR archives of my /var/www directory.
Back
Top