-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b9f3d0c
commit 177dba0
Showing
5 changed files
with
33 additions
and
13 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
9 changes: 5 additions & 4 deletions
9
web/Modules/Email/resources/views/server/postfix/sql/mysql_virtual_alias_maps.cf
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
user = phyre_postfix | ||
password = phyre_postfix_password | ||
hosts = 127.0.0.1 | ||
dbname = phyre_postfix | ||
user = {{$username}} | ||
password = {{$password}} | ||
hosts = {{$host}} | ||
dbname = {{$database}} | ||
port = {{$port}} | ||
query = SELECT goto FROM alias WHERE address='%s' AND active = '1' |
9 changes: 5 additions & 4 deletions
9
web/Modules/Email/resources/views/server/postfix/sql/mysql_virtual_domains_maps.cf
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
user = phyre_postfix | ||
password = phyre_postfix_password | ||
hosts = 127.0.0.1 | ||
dbname = phyre_postfix | ||
user = {{$username}} | ||
password = {{$password}} | ||
hosts = {{$host}} | ||
dbname = {{$database}} | ||
port = {{$port}} | ||
query = SELECT domain FROM domain WHERE domain='%s' AND active = '1' |
9 changes: 5 additions & 4 deletions
9
web/Modules/Email/resources/views/server/postfix/sql/mysql_virtual_mailbox_maps.cf
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
user = phyre_postfix | ||
password = phyre_postfix_password | ||
hosts = 127.0.0.1 | ||
dbname = phyre_postfix | ||
user = {{$username}} | ||
password = {{$password}} | ||
hosts = {{$host}} | ||
dbname = {{$database}} | ||
port = {{$port}} | ||
query = SELECT maildir FROM mailbox WHERE username='%s' AND active = '1' |