- /System/Library/LaunchDaemons/org.postfix.master.plist to create (or modify) This is the launchctl file.
- /etc/postfix/main.cf to append to. This id the postfix configuration file.
- /etc/postfix/sasl_passwd to create or modify This the sasl password file that must be filled with your google application password settings.
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
//Avec pattern matching | |
get("/track/:id") { request => | |
val result = request.routeParams.getOrElse("id") match { | |
case None => Map("track2" -> "larzac", "track1" -> "salagou") | |
case Some(id) => Map("track1" -> "salagou") | |
} | |
render.json(result) | |
} |