This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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..."; |
NewerOlder