A webmail client. Forked from https://git.sr.ht/~migadu/alps
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # SYNOPSIS
  2. alps [options...] <upstream servers...>
  3. # DESCRIPTION
  4. alps is a simple and extensible webmail. It offers a web interface for IMAP,
  5. SMTP and other upstream servers.
  6. At least one upstream IMAP server needs to be specified. The easiest way to do
  7. so is to just specify a domain name:
  8. alps example.org
  9. This assumes SRV DNS records are properly set up (see [RFC 6186]).
  10. Alternatively, one or more upstream server URLs can be specified:
  11. alps imaps://mail.example.org:993 smtps://mail.example.org:465
  12. The following URL schemes are supported:
  13. * `imaps` (IMAP with TLS), `imap+insecure` (plain IMAP)
  14. * `smtps` (SMTP with TLS), `smtp+insecure` (plain SMTP)
  15. * `https` (CardDAV and CalDAV over HTTPS), `http+insecure` (CardDAV and CalDAV
  16. over plain HTTP)
  17. * `carddavs` (CardDAV over HTTPS), `carddav+insecure` (CardDAV over plain HTTP)
  18. * `caldavs` (CalDAV over HTTPS), `caldav+insecure` (CalDAV over plain HTTP)
  19. # OPTIONS
  20. **-theme**: default theme (default: no theme)
  21. **-addr**: listening address (default: ":1323")
  22. **-debug**: enable debug logs and print IMAP network activity
  23. **-h**, **--help**: show help message and exit
  24. # SIGNALS
  25. **SIGUSR1**: reloads templates and Lua plugins
  26. [RFC 6186]: https://tools.ietf.org/html/rfc6186