├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── caddy ├── config.go ├── setup.go └── setup_test.go ├── cmd └── multipass │ ├── Caddyfile │ └── multipass.go ├── doc.go ├── header.go ├── header_test.go ├── keys.go ├── mock └── mock.go ├── multipass.go ├── multipass_test.go ├── options.go ├── options_test.go ├── services ├── email │ ├── email.go │ ├── email_test.go │ ├── example_test.go │ └── testdata │ │ └── mail.tmpl └── io │ └── io.go ├── templates.go └── token.go /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/README.md -------------------------------------------------------------------------------- /caddy/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/caddy/config.go -------------------------------------------------------------------------------- /caddy/setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/caddy/setup.go -------------------------------------------------------------------------------- /caddy/setup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/caddy/setup_test.go -------------------------------------------------------------------------------- /cmd/multipass/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/cmd/multipass/Caddyfile -------------------------------------------------------------------------------- /cmd/multipass/multipass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/cmd/multipass/multipass.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/doc.go -------------------------------------------------------------------------------- /header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/header.go -------------------------------------------------------------------------------- /header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/header_test.go -------------------------------------------------------------------------------- /keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/keys.go -------------------------------------------------------------------------------- /mock/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/mock/mock.go -------------------------------------------------------------------------------- /multipass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/multipass.go -------------------------------------------------------------------------------- /multipass_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/multipass_test.go -------------------------------------------------------------------------------- /options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/options.go -------------------------------------------------------------------------------- /options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/options_test.go -------------------------------------------------------------------------------- /services/email/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/services/email/email.go -------------------------------------------------------------------------------- /services/email/email_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/services/email/email_test.go -------------------------------------------------------------------------------- /services/email/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/services/email/example_test.go -------------------------------------------------------------------------------- /services/email/testdata/mail.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/services/email/testdata/mail.tmpl -------------------------------------------------------------------------------- /services/io/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/services/io/io.go -------------------------------------------------------------------------------- /templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/templates.go -------------------------------------------------------------------------------- /token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namsral/multipass/HEAD/token.go --------------------------------------------------------------------------------