• 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!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • 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.

Recent content by Eric Pretorious

  1. E

    Trends & Patterns in E-mail Attacks

    In the proces of writing a daemon to monitor and respond to failed login attempts, I noticed this pattern repeated numerous times every day: Five simultaneous connections - never any more, never any less: Sep 9 04:00:34 www postfix/smtpd[444]: connect from 592329.soborka.net[94.158.158.194]...
  2. E

    Disabiling e-mail Forwarding

    FYI: I discovered that the last condition (i.e., "AND mail.redirect = true ;") didn't do anything for paring down the results so I modified the search term by enclosing the word true in quotes and got very different results: mysql> SELECT mail.mail_name FROM mail WHERE mail.redirect = 'true'...
  3. E

    Disabiling e-mail Forwarding

    I was able to leverage more of Shall's code to find the answer: mysql> SELECT CONCAT(mail.mail_name,'@',domains.name) AS 'virtual mailbox', mail_redir.address AS 'redirects to' FROM mail_redir,mail,domains WHERE mail_redir.mn_id = mail.id AND mail.dom_id = domains.id AND mail.redirect = true ...
  4. E

    Disabiling e-mail Forwarding

    After reading Shall's code samples in the forum post 'Extract "all valid emails"?' I've been able to... Identify virtual mailboxes that have redirects configured: mysql> SELECT mail.id, CONCAT(mail.mail_name,'@',domains.name) FROM mail LEFT JOIN domains ON domains.id = mail.dom_id WHERE...
  5. E

    Disabiling e-mail Forwarding

    It's been four days without a single response! Bumping this thread.
  6. E

    Disabiling e-mail Forwarding

    Like most hosters - I'm sure - many of our clients create e-mail accounts that forward incoming e-mail to mailboxes hosted on other e-mail services. e.g., Gmail. Lately, though, a handful of these accounts have been receiving a lot of spam (i.e., UCE) and that's been causing a lot of damage...
  7. E

    FTPS not working

    Inders: I think that cmaxwell is attempting to use FTPS (i.e., SSL-encrypted FTP) - not SFTP, the SSH File Transfer Protocol. [root@www ~]# grep -i ftp /etc/services fsftp 115/tcp sftp 115/udp ...<SNIP>... tps-data 989/tcp # ftp protocol, data...
  8. E

    Failed Mail Authentication

    I guess that what I'm driving at here is: How can I detect brute force attacks against Postfix and stop the ongoing attacks? If I understood how the messages are logged, I might be able to write a simple script that adds a rule to iptables to stop the attacks.
  9. E

    Creating Mail Accounts From the CLI

    AFAICT, I'm using the command correctly, Igor. From above... [root@www bin]# ./mailmng --add-mailname --domain-name=example.com --mailname=eric [root@www bin]# ./mail_auth_view | grep eric [root@www bin]# Have I overlooked something? Do you see any syntactical errors? Or is this a bug...
  10. E

    E-mail Accounts: Outbound Spam

    I have no idea, Igor. We're using PP 11.0.9 (Update #62) on CentOS 6.5 (x86_64).
  11. E

    E-mail Accounts: Outbound Spam

    A little help here?
  12. E

    Creating Mail Accounts From the CLI

    So: What say you all? Have I misunderstood? Or is this a bug?
  13. E

    Vanishing E-mail Messages

    Bumping this message.
  14. E

    Vanishing E-mail Messages

    I wasn't able to locate the messages that have arrived in the past four days but I was able to repair the account by... Creating an archive of the mailstore (i.e., /var/qmail/mailnames/example.com/eric/Maildir/new): cd /var/qmail/mailnames/example.com/eric/ tar czf /tmp/eric@example.com...
Back
Top