Skip to content
Snippets Groups Projects
Commit dc53d4c4 authored by me5na7qbjqbrp's avatar me5na7qbjqbrp
Browse files

Clone plugins and add logo

parent 239b8ec4
No related branches found
No related tags found
1 merge request!87Roundcube
...@@ -18,4 +18,9 @@ roundcube_glob: ...@@ -18,4 +18,9 @@ roundcube_glob:
- repo: 'https://gitlab.crans.org/nounous/roundcube-plugin-identity_smtp.git' - repo: 'https://gitlab.crans.org/nounous/roundcube-plugin-identity_smtp.git'
name: identity_smtp name: identity_smtp
version: HEAD version: HEAD
- name: zipdownload
- name: attachment_reminder
- name: newmail_notifier
- name: listcommands
- name: thunderbird_labels
- name: contextmenu
...@@ -34,20 +34,23 @@ ...@@ -34,20 +34,23 @@
dest: "/etc/roundcube/plugins/{{ item.name }}" dest: "/etc/roundcube/plugins/{{ item.name }}"
version: "{{ item.version }}" version: "{{ item.version }}"
loop: "{{ roundcube.plugins }}" loop: "{{ roundcube.plugins }}"
when: item.repo is defined
- name: Symlink custom plugins (1) - name: Symlink custom plugins (1)
file: file:
src: "/usr/share/roundcube/plugins/{{ item }}" src: "/usr/share/roundcube/plugins/{{ item.name }}"
dest: "/var/lib/roundcube/plugins/{{ item }}" dest: "/var/lib/roundcube/plugins/{{ item.name }}"
state: link state: link
loop: "{{ roundcube.plugins | map(attribute='name') | list }}" loop: "{{ roundcube.plugins }}"
when: item.repo is defined
- name: Symlink custom plugins (2) - name: Symlink custom plugins (2)
file: file:
src: "/etc/roundcube/plugins/{{ item }}" src: "/etc/roundcube/plugins/{{ item.name }}"
dest: "/usr/share/roundcube/plugins/{{ item }}" dest: "/usr/share/roundcube/plugins/{{ item.name }}"
state: link state: link
loop: "{{ roundcube.plugins | map(attribute='name') | list }}" loop: "{{ roundcube.plugins }}"
when: item.repo is defined
- name: Copy NGINX site - name: Copy NGINX site
template: template:
......
...@@ -88,5 +88,14 @@ $config['skin'] = 'elastic'; ...@@ -88,5 +88,14 @@ $config['skin'] = 'elastic';
// see defaults.inc.php for additional informations // see defaults.inc.php for additional informations
$config['enable_spellcheck'] = false; $config['enable_spellcheck'] = false;
// Custom logo
$config['skin_logo'] = array(
"elastic:login[small]" => "https://www.crans.org/images/crans_black.svg",
"elastic:login" => "https://www.crans.org/images/crans_black.svg",
"elastic:*" => "https://www.crans.org/images/crans.svg",
"larry:*" => "https://www.crans.org/images/crans_banner.png",
"classic:*" => "https://www.crans.org/images/crans_banner.png"
);
// This domain will be used to form e-mail addresses of new users // This domain will be used to form e-mail addresses of new users
$config['mail_domain'] = '{{ roundcube.mail_domain }}'; $config['mail_domain'] = '{{ roundcube.mail_domain }}';
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment