Skip to content

Instantly share code, notes, and snippets.

View bredmor's full-sized avatar
🔥
This is fine.

Morgan Breden bredmor

🔥
This is fine.
View GitHub Profile
@bredmor
bredmor / ars-mailserver-add-user
Created July 23, 2014 20:09
Automated tool for adding new users to the default mailserver set up following the guide at http://arstechnica.com/information-technology/2014/02/how-to-run-your-own-e-mail-server-with-your-own-domain-part-1/
#!/bin/bash
# Add User to Postfix/Dovecot
echo -n "Enter the new email address: "
read mail_user
echo -n "Enter the new password: "
read mail_pass
echo "Adding User to Postfix Virtual Mailboxes...";