~charmers/charms/oneiric/roundcube/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
options:
  default_host:
    default: imap.domain.tld
    type: string
    description: IMAP mail host chosen to perform the log-in 
  default_port:
    default: 143
    type: int
    description: IMAP server port
  smtp_server:
    default: smtp.server.tld
    type: string
    description: SMTP mail host to send emails
  smtp_port:
    default: 25
    type: int
    description: SMTP port.
  smtp_user:
    default: "%u"
    type: string
    description: "SMTP username (if required) if you use %u as the username Roundcube will use the current username for login"
  smtp_pass:
    default: "%p"
    type: string
    description: "SMTP password (if required) if you use %p as the password Roundcube will use the current user's password for login"
  db_max_length:
    default: 512000
    type: int
    description: maximum length of a query in bytes
  db_persistent:
    default: FALSE
    type: boolean
    description: use persistent db-connections
  force_https:
    default: FALSE
    type: boolean
    description: with this option enabled, all non-secure connections will be redirected.  set the port for the ssl connection as value of this option if it differs from the default 443
  use_https:
    default: FALSE
    type: boolean
    description: tell PHP that it should work as under secure connection even if it doesn't recognize it as secure ($_SERVER['HTTPS'] is not set) e.g. when you're running Roundcube behind a https proxy
  do_https:
    default: 0
    type: int
    description: Will setup apache with ssl vhost on the port value specified if different from 0 (default ssl port is 443)
  ssl_crt:
    default: ""
    type: string
    description: Full path (in the running unit) of the certificate file that Apache will use for https. The file needs to be placed using the juju scp command.
  ssl_key:
    default: ""
    type: string
    description: Full path (in the running unit) of the certificate key file that Apache will use for https. The file needs to be placed using the juju scp command.
  optimize_http:
    default: 1
    type: int
    description: enables mod_deflate, mod_headers and mod_expires as recommended for production use.