2023-06-02 10:39:25 +00:00
|
|
|
+++
|
|
|
|
title = "Configuration"
|
|
|
|
weight = 10
|
|
|
|
+++
|
|
|
|
|
2023-06-02 15:29:36 +00:00
|
|
|
## Sample
|
2023-06-02 10:39:25 +00:00
|
|
|
|
|
|
|
A configuration file that illustrate all the possible options,
|
|
|
|
in practise, many fields are omitted:
|
|
|
|
|
|
|
|
```toml
|
|
|
|
s3_endpoint = "s3.garage.tld"
|
|
|
|
k2v_endpoint = "k2v.garage.tld"
|
|
|
|
aws_region = "garage"
|
|
|
|
|
|
|
|
[lmtp]
|
|
|
|
bind_addr = "[::1]:2525"
|
|
|
|
hostname = "aerogramme.tld"
|
|
|
|
|
|
|
|
[imap]
|
|
|
|
bind_addr = "[::1]:993"
|
|
|
|
|
|
|
|
[login_static]
|
|
|
|
default_bucket = "aerogramme"
|
|
|
|
|
2023-06-02 15:29:36 +00:00
|
|
|
[login_static.users.alan]
|
2023-06-02 10:39:25 +00:00
|
|
|
email_addresses = [
|
2023-06-02 15:29:36 +00:00
|
|
|
"alan@smith.me",
|
2023-06-02 10:39:25 +00:00
|
|
|
"aln@example.com"
|
|
|
|
]
|
|
|
|
password = "$argon2id$v=19$m=4096,t=3,p=1$..."
|
|
|
|
|
|
|
|
aws_access_key_id = "GK..."
|
|
|
|
aws_secret_access_key = "c0ffee"
|
|
|
|
bucket = "aerogramme-alan"
|
|
|
|
|
|
|
|
user_secret = "s3cr3t"
|
2023-06-02 15:29:36 +00:00
|
|
|
alternate_user_secrets = [ "s3cr3t2", "s3cr3t3" ]
|
2023-06-02 10:39:25 +00:00
|
|
|
|
|
|
|
master_key = "..."
|
|
|
|
secret_key = "..."
|
|
|
|
|
|
|
|
[login_ldap]
|
|
|
|
ldap_server = "ldap.example.com"
|
|
|
|
|
|
|
|
pre_bind_on_login = true
|
|
|
|
bind_dn = "cn=admin,dc=example,dc=com"
|
|
|
|
bind_password = "s3cr3t"
|
|
|
|
|
|
|
|
search_base = "ou=users,dc=example,dc=com"
|
|
|
|
username_attr = "cn"
|
|
|
|
mail_attr = "mail"
|
|
|
|
|
|
|
|
aws_access_key_id_attr = "garage_s3_access_key"
|
|
|
|
aws_secret_access_key_attr = "garage_s3_secret_key"
|
|
|
|
user_secret_attr = "secret"
|
|
|
|
alternate_user_secrets_attr = "secret_alt"
|
|
|
|
|
|
|
|
# bucket = "aerogramme"
|
|
|
|
bucket_attr = "bucket"
|
|
|
|
|
|
|
|
```
|
|
|
|
|
2023-06-02 15:29:36 +00:00
|
|
|
## Global configuration details
|
2023-06-02 10:39:25 +00:00
|
|
|
|
|
|
|
### `s3_endpoint`
|
|
|
|
|
|
|
|
### `k2v_endpoint`
|
|
|
|
|
|
|
|
### `aws_region`
|
|
|
|
|
2023-06-02 15:29:36 +00:00
|
|
|
## LMTP configuration details
|
2023-06-02 10:39:25 +00:00
|
|
|
|
|
|
|
### `lmtp.bind_addr`
|
|
|
|
|
|
|
|
### `lmtp.hostname`
|
|
|
|
|
2023-06-02 15:29:36 +00:00
|
|
|
## IMAP configuration details
|
2023-06-02 10:39:25 +00:00
|
|
|
|
|
|
|
### `imap.bind_addr`
|
|
|
|
|
2023-06-02 15:29:36 +00:00
|
|
|
## Static login configuration details
|
2023-06-02 10:39:25 +00:00
|
|
|
|
|
|
|
### `login_static.default_bucket`
|
|
|
|
|
|
|
|
### `login_static.user.<name>.email_addresses`
|
|
|
|
|
|
|
|
### `login_static.user.<name>.password`
|
|
|
|
|
|
|
|
### `login_static.user.<name>.aws_access_key_id`
|
|
|
|
|
|
|
|
### `login_static.user.<name>.aws_secret_access_key`
|
|
|
|
|
|
|
|
### `login_static.user.<name>.bucket`
|
|
|
|
|
|
|
|
### `login_static.user.<name>.user_secret`
|
|
|
|
|
|
|
|
### `login_static.user.<name>.master_key`
|
|
|
|
|
|
|
|
### `login_static.user.<name>.secret_key`
|
|
|
|
|
2023-06-02 15:29:36 +00:00
|
|
|
## LDAP login configuration details
|
2023-06-02 10:39:25 +00:00
|
|
|
|
|
|
|
### `login_ldap.ldap_server`
|
|
|
|
|
|
|
|
### `login_ldap.pre_bind_on`
|
|
|
|
|
|
|
|
### `login_ldap.bind_dn`
|
|
|
|
|
|
|
|
### `login_ldap.bind_password`
|
|
|
|
|
|
|
|
### `login_ldap.search_base`
|
|
|
|
|
|
|
|
### `login_ldap.username_attr`
|
|
|
|
|
|
|
|
### `login_ldap.mail_attr`
|
|
|
|
|
|
|
|
### `login_ldap.aws_access_key_id_attr`
|
|
|
|
|
|
|
|
### `login_ldap.aws_secret_access_key_attr`
|
|
|
|
|
|
|
|
### `login_ldap.user_secret_attr`
|
|
|
|
|
|
|
|
### `login_ldap.alternate_user_secrets_attr`
|
|
|
|
|
|
|
|
### `login_ldap.bucket`
|
|
|
|
|
|
|
|
### `login_ldap.bucket_attr`
|
|
|
|
|
|
|
|
|
|
|
|
|