All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.anrisoftware.sscontrol.mail.postfix.mysqlstorage.linux.data.stg Maven / Gradle / Ivy

There is a newer version: 1.0-alpha-4
Show newest version
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
%>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy