camelCase 2

This commit is contained in:
Robin Raymond 2017-09-02 13:29:49 +02:00
parent b5fccc7e39
commit ebb2a5caf7
6 changed files with 41 additions and 39 deletions

View file

@ -14,7 +14,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>
{ vmailGroupName, vmailUserName, mailDirectory, enable_imap, enable_pop3, cert,
{ vmailGroupName, vmailUserName, mailDirectory, enableImap, enablePop3, cert,
key }:
let
@ -24,8 +24,8 @@ let
in
{
enable = true;
enableImap = enable_imap;
enablePop3 = enable_pop3;
enableImap = enableImap;
enablePop3 = enablePop3;
mailGroup = vmailGroupName;
mailUser = vmailUserName;
mailLocation = dovecot_maildir;