Tag Archives: email

Outlook Shared Mailbox Deleted Items Issue

When you delete an email from a Exchange/Exchange on-Line shared mailbox, the deleted mail goes to your mailbox Deleted Items folder when it should go into the shared mailbox Deleted Items folder.

To solve the issue you have to add/change the following registry key:

HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook\Options\General

Add the DelegateWastebasketStyle DWORD with 4 in the value the restart Outlook.

Items that are deleted from a shared mailbox go to the wrong folder in Outlook

Send email from Linux command line

Every once a while you need to send email from a Linux command line and there you go to google try to find it…

With attachment:

echo "message" | mailx -s "subject" -a attachment email@dress
echo "message" | mutt -s "subject" -a attachment -- email@dress

Without attachment:

echo "message" | mail -s "subject" email@ddress

Important:
Postfix by default restrict attachment size to approx 10MB i.e. 10240000 bytes.

You can check it using following command:

postconf | grep message_size_limit

To change attachment-size to say 50 MB, run a command like:

postconf -e message_size_limit=52428800