57 lines
1.9 KiB
Diff
57 lines
1.9 KiB
Diff
--- a/cmd/alps/main.go
|
|
+++ b/cmd/alps/main.go
|
|
@@ -23,21 +23,18 @@ import (
|
|
_ "git.sr.ht/~migadu/alps/plugins/viewtext"
|
|
)
|
|
|
|
-var themesPath = "./themes"
|
|
-
|
|
func main() {
|
|
var (
|
|
addr string
|
|
loginKey string
|
|
options alps.Options
|
|
)
|
|
- flag.StringVar(&options.Theme, "theme", "", "default theme")
|
|
flag.StringVar(&addr, "addr", ":1323", "listening address")
|
|
flag.BoolVar(&options.Debug, "debug", false, "enable debug logs")
|
|
flag.StringVar(&loginKey, "login-key", "", "Fernet key for login persistence")
|
|
|
|
flag.Usage = func() {
|
|
- fmt.Fprintf(flag.CommandLine.Output(), "usage: alps [options...] <upstream servers...>\n")
|
|
+ fmt.Fprintf(flag.CommandLine.Output(), "usage: serialmail [options...] <upstream servers...>\n")
|
|
flag.PrintDefaults()
|
|
}
|
|
|
|
@@ -48,7 +45,8 @@ func main() {
|
|
flag.Usage()
|
|
return
|
|
}
|
|
- options.ThemesPath = themesPath
|
|
+ options.ThemesPath = "/var/www/serialmail"
|
|
+ options.Theme = "lain"
|
|
|
|
if loginKey != "" {
|
|
fernetKey, err := fernet.DecodeKey(loginKey)
|
|
--- a/plugin.go
|
|
+++ b/plugin.go
|
|
@@ -7,7 +7,7 @@ import (
|
|
)
|
|
|
|
// PluginDir is the path to the plugins directory.
|
|
-const PluginDir = "plugins"
|
|
+const PluginDir = "/usr/lib/serialmail/plugins"
|
|
|
|
// Plugin extends alps with additional functionality.
|
|
type Plugin interface {
|
|
--- a/server.go
|
|
+++ b/server.go
|
|
@@ -423,7 +423,7 @@ func New(e *echo.Echo, options *Options) (*Server, error) {
|
|
return func(ectx echo.Context) error {
|
|
// `style-src 'unsafe-inline'` is required for e-mails with
|
|
// embedded stylesheets
|
|
- ectx.Response().Header().Set("Content-Security-Policy", "default-src 'self'; style-src 'self' 'unsafe-inline'")
|
|
+ ectx.Response().Header().Set("Content-Security-Policy", "default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; img-src *")
|
|
// DNS prefetching has privacy implications
|
|
ectx.Response().Header().Set("X-DNS-Prefetch-Control", "off")
|
|
return next(ectx)
|