com.anrisoftware.sscontrol.mail.postfix.mysqlstorage.linux.data.stg Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sscontrol-mail-postfix Show documentation
Show all versions of sscontrol-mail-postfix Show documentation
Installs Postfix mail server. - http://www.postfix.org/
insertDomains(args) ::= <<
--user= --password= -t \<\<'STOP'
USE ;
\q
STOP
>>
domainRow(domain, args) ::= <<
INSERT INTO `` (``, ``) VALUES
('', )
ON DUPLICATE KEY UPDATE
``=;
>>
resetDomains(args) ::= <<
--user= --password= -t \<\<'STOP'
USE ;
TRUNCATE TABLE ``;
STOP
>>
insertAliases(args) ::= <<
--user= --password= -t \<\<'STOP'
USE ;
\q
STOP
>>
aliasRow(alias, args) ::= <<
INSERT INTO `` (``, ``, ``) VALUES
('', '', )
ON DUPLICATE KEY UPDATE
``='',
``=;
>>
aliasName(alias) ::= <%
@
%>
aliasDestination(alias) ::= <%
@
%>
resetAliases(args) ::= <<
--user= --password= -t \<\<'STOP'
USE ;
TRUNCATE TABLE ``;
STOP
>>
insertUsers(args) ::= <<
--user= --password= -t \<\<'STOP'
USE ;
\q
STOP
>>
userRow(user, args) ::= <<
INSERT INTO `` (``, ``, ``, ``, ``) VALUES
('@', '', '//', , encrypt(''))
ON DUPLICATE KEY UPDATE
``=,
``=encrypt('');
>>
resetUsers(args) ::= <<
--user= --password= -t \<\<'STOP'
USE ;
TRUNCATE TABLE ``;
STOP
>>
enabledStr(enabled) ::= <%
10
%>