/[smecontribs]/rpms/smeserver-roundcube/contribs8/smeserver-roundcube-0.9-calendar-junk-contextmenu.patch
ViewVC logotype

Contents of /rpms/smeserver-roundcube/contribs8/smeserver-roundcube-0.9-calendar-junk-contextmenu.patch

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download)
Sun Oct 27 17:48:17 2013 UTC (10 years, 6 months ago) by unnilennium
Branch: MAIN
CVS Tags: smeserver-roundcube-0_9-19_el5_sme, smeserver-roundcube-0_9-17_el5_sme, smeserver-roundcube-0_9-20_el5_sme, smeserver-roundcube-0_9-16_el5_sme, smeserver-roundcube-0_9-18_el5_sme, smeserver-roundcube-0_9-15, smeserver-roundcube-0_9-15_el5_sme, HEAD
Initial import of srpm

1 diff -Nur smeserver-roundcube-0.9-old/root/etc/e-smith/templates/opt/roundcube/config/main.inc.php/20plugin smeserver-roundcube-0.9/root/etc/e-smith/templates/opt/roundcube/config/main.inc.php/20plugin
2 --- smeserver-roundcube-0.9-old/root/etc/e-smith/templates/opt/roundcube/config/main.inc.php/20plugin 2013-10-13 02:00:31.000000000 +0200
3 +++ smeserver-roundcube-0.9/root/etc/e-smith/templates/opt/roundcube/config/main.inc.php/20plugin 2013-10-13 02:01:24.000000000 +0200
4 @@ -1,5 +1,114 @@
5 -{
6 - $OUT .= "\$rcmail_config['plugins'] = array(carddav);";
7 +#If you want to modify options you have to modify the template in /etc/e-smith/templates/opt/roundcube/config/main.inc.php/20plugin
8
9 -}
10 +#Please add all plugins you want to activate in the command line below : $rcmail_config['plugins'] = array('plugin1','plugin2','plugin3');
11 +#where "plugin*" is a valid name of plugin and a valid folder name in /opt/roundcube/plugins
12 +
13 +#Here we declare our activated plugins
14 +$rcmail_config['plugins'] = array('carddav','calendar','libcalendaring','contextmenu','markasjunk2','vcard_attachments','newmail_notifier',"emoticons");
15 +
16 +
17 +#calendar plugin option
18 +// backend type (database, google, kolab)
19 +$rcmail_config['calendar_driver'] = "database";
20 +
21 +// default calendar view (agendaDay, agendaWeek, month)
22 +$rcmail_config['calendar_default_view'] = "month";
23 +
24 +// mapping of Roundcube date formats to calendar formats (long/short/agenda)
25 +// should be in sync with 'date_formats' in main config
26 +$rcmail_config['calendar_date_format_sets'] = array(
27 + 'yyyy-MM-dd' => array('MMM d yyyy', 'M-d', 'ddd MM-dd'),
28 + 'dd-MM-yyyy' => array('d MMM yyyy', 'd-M', 'ddd dd-MM'),
29 + 'yyyy/MM/dd' => array('MMM d yyyy', 'M/d', 'ddd MM/dd'),
30 + 'MM/dd/yyyy' => array('MMM d yyyy', 'M/d', 'ddd MM/dd'),
31 + 'dd/MM/yyyy' => array('d MMM yyyy', 'd/M', 'ddd dd/MM'),
32 + 'dd.MM.yyyy' => array('dd. MMM yyyy', 'd.M', 'ddd dd.MM.'),
33 + 'd.M.yyyy' => array('d. MMM yyyy', 'd.M', 'ddd d.MM.'),
34 +);
35 +
36 +// general date format (only set if different from default date format and not user configurable)
37 +// $rcmail_config['calendar_date_format'] = "yyyy-MM-dd";
38 +
39 +// time format (only set if different from default date format)
40 +// $rcmail_config['calendar_time_format'] = "HH:mm";
41 +
42 +// short date format (used for column titles)
43 +// $rcmail_config['calendar_date_short'] = 'M-d';
44 +
45 +// long date format (used for calendar title)
46 +// $rcmail_config['calendar_date_long'] = 'MMM d yyyy';
47 +
48 +// date format used for agenda view
49 +// $rcmail_config['calendar_date_agenda'] = 'ddd MM-dd';
50 +
51 +// timeslots per hour (1, 2, 3, 4, 6)
52 +$rcmail_config['calendar_timeslots'] = 2;
53 +
54 +// show this number of days in agenda view
55 +$rcmail_config['calendar_agenda_range'] = 60;
56 +
57 +// first day of the week (0-6)
58 +$rcmail_config['calendar_first_day'] = 1;
59 +
60 +// first hour of the calendar (0-23)
61 +$rcmail_config['calendar_first_hour'] = 6;
62 +
63 +// working hours begin
64 +$rcmail_config['calendar_work_start'] = 6;
65 +
66 +// working hours end
67 +$rcmail_config['calendar_work_end'] = 18;
68 +
69 +// show line at current time of the day
70 +$rcmail_config['calendar_time_indicator'] = true;
71 +
72 +// default alarm settings for new events.
73 +// this is only a preset when a new event dialog opens
74 +// possible values are <empty>, DISPLAY, EMAIL
75 +$rcmail_config['calendar_default_alarm_type'] = 'DISPLAY';
76 +
77 +// default alarm offset for new events.
78 +// use ical-style offset values like "-1H" (one hour before) or "+30M" (30 minutes after)
79 +$rcmail_config['calendar_default_alarm_offset'] = '-15M';
80 +
81 +// how to colorize events:
82 +// 0: according to calendar color
83 +// 1: according to category color
84 +// 2: calendar for outer, category for inner color
85 +// 3: category for outer, calendar for inner color
86 +$rcmail_config['calendar_event_coloring'] = 0;
87 +
88 +// event categories
89 +$rcmail_config['calendar_categories'] = array(
90 + 'Personal' => 'c0c0c0',
91 + 'Work' => 'ff0000',
92 + 'Family' => '00ff00',
93 + 'Holiday' => 'ff6600',
94 +);
95 +
96 +// enable users to invite/edit attendees for shared events organized by others
97 +$rcmail_config['calendar_allow_invite_shared'] = false;
98 +
99 +// enable asynchronous free-busy triggering after data changed
100 +$rcmail_config['calendar_freebusy_trigger'] = false;
101 +
102 +// SMTP username used to send (anonymous) itip messages
103 +#$rcmail_config['calendar_itip_smtp_server'] = null;
104 +
105 +// SMTP username used to send (anonymous) itip messages
106 +#$rcmail_config['calendar_itip_smtp_user'] = 'smtpauth';
107 +
108 +// SMTP password used to send (anonymous) itip messages
109 +#$rcmail_config['calendar_itip_smtp_pass'] = '123456';
110 +
111 +#New mail notifier plugin
112 +// Enables basic notification
113 +$rcmail_config['newmail_notifier_basic'] = true;
114 +
115 +// Enables sound notification
116 +$rcmail_config['newmail_notifier_sound'] = false;
117 +
118 +// Enables desktop notification
119 +$rcmail_config['newmail_notifier_desktop'] = false;
120 +###
121

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed