1

Topic: How to create a send only email account

==== Required information ====
My version is  iredmail v0.9.5
Distribution is ubuntu 16.0 LTS
Backend MYSQL
Webserver Apache
IredAdmin-open source
====

How can i create an email address that can only send out emails but cannot receive...in that if some one sends an email to it gets a bounce back message with "User unkown"

Thanks

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2

Re: How to create a send only email account

Try SQL commands like below:

USE vmail;
UPDATE mailbox SET enabledeliver=0 WHERE username='<email>';

Replace <email> by the real email address of your user.