• Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Delete Mail after Forwarding

magic_77

Basic Pleskian
Hi to all,

is it possible to configure Plesk (running Postfix) with the ability to delete Mails that where forwarded?
So if anyone could give me an hint

thxin advance
Marek
 
By default mail should be only forwarded and not stored in mailbox. You can check it in .qmail file. For example:

# cat ./qmail/mailnames/plesk10.domain.com/mail1/.qmail
| true
| /usr/bin/deliverquota ./Maildir

deliverquota indicate that mail will be stored in mailbox. For forwarding you will see something like &<mailname>@<domain> without deliverquota.
 
Hi IgorG,

thx for this hint - so is it possible to reconfigure this account to only forward emails - and where i have to do
this?

greets
Marek
 
You should add address for forwarding and disable "Mailbox" checkbox for email in Control Panel. In that case forwarding will be enabled without storing email in mailbox.

For example:

Usual mailbox:
# cat ./qmail/mailnames/plesk10.domain.com/mail1/.qmail
| true
| /usr/bin/deliverquota ./Maildir

Mailbox with forwarding:
# cat ./qmail/mailnames/plesk10.domain.com/mail1/.qmail
| true
| /usr/bin/deliverquota ./Maildir
&[email protected]

Mailbox with forwarding and disabled "Mailbox" checkbox:
# cat ./qmail/mailnames/plesk10.domain.com/mail1/.qmail
| true
&[email protected]
 
Back
Top