![]() |
|
|
|||||||
For more information about the ads and why they're here, please see the FAQ
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
#51
|
||||
|
||||
|
add vcal events from email with vcal attachment or event to calendar and add Birthdays from Adressbook with additional Fields and Birtday field to calendar. i think vcal support is a cool feature or birtday fields in Addressbook and support from calendar for this
__________________
My RoundCube Mods |
|
#52
|
|||
|
|||
|
Really nice addon!
This was most definitely a feature Roundcube was really missing. I would like to request a feature to be able to plug-in the calendar in my Thunderbird (with Lightning) so I my calendar items are synced. Also, it would be nice if you could make changes in the "desktop" calendar and seeing them changed in the webmail as well, so basicly synchronization. If this is not possible or falls outside your scope, downloading an ICS file from my server is possible so if the RC_Calendar supports it... I've seen you've got Caldav on the todo list, but thats quite an overkill. DAViCal for instance requires postgresql. After that, I calendar sharing would be pretty sweet too if this is possible. It'll make RC and the Calendar plugin more enterprise-ready. Last edited by Sypher; 02-22-2010 at 01:52 PM. |
|
#53
|
|||
|
|||
|
Hi Lazlo,
my RC runs on PostgreSQL, I was able to set up the Tables, but table-operations dont work. Its running and I can see the demo-entries, but delete them or put new ones into the cal doesnt work, but shows no error either. Is there a chance to get it working on PGSQL? Here the init I used Code:
-- PSQL Init for RC calender
CREATE SEQUENCE webmail_event_ids
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
CREATE TABLE webmail_events (
event_id integer DEFAULT nextval('webmail_event_ids'::regclass) NOT NULL,
user_id integer NOT NULL,
"start" timestamp without time zone DEFAULT now() NOT NULL,
"end" timestamp without time zone DEFAULT now() NOT NULL,
"summary" character varying(255) NOT NULL,
"description" text NOT NULL,
"location" character varying(255) NOT NULL,
"categories" character varying(255) NOT NULL,
"all_day" smallint NOT NULL DEFAULT 0
);
CREATE INDEX webmail_events_event_id_idx ON webmail_events USING btree (event_id);
--
-- Constraints Table `events`
--
ALTER TABLE ONLY webmail_events
ADD CONSTRAINT webmail_events_user_id_fkey FOREIGN KEY (user_id) REFERENCES webmail_users(user_id) ON UPDATE CASCADE ON DELETE CASCADE;
-- K. |
|
#54
|
||||
|
||||
|
Did you configure ./config/config.inc.php ? It looks like you run the "dummy" driver instead of the database driver.
__________________
Regards, Rosali __________________ MyRoundcube Project http://myroundcube.googlecode.com MyRoundcube Online Demo http://mail4us.net MyRoundcube Plugins Generic Installation Guide http://mail4us.net/myroundcube Mailing List http://mail4us.net/?_action=plugin.nabble |
|
#55
|
|||
|
|||
|
An extra DB driver for calendar?
RC runs fine on my postgres, its using the same DB like my mailserver does (thats why I have the webmail_ -prefix) even the mailadresses according to an account are correct fetched at 1st login. In calendear I set unlike default: Code:
$rcmail_config['use_calendar'] = 'calendar'; $rcmail_config['db_table_events'] = 'webmail_events'; ![]() K. Last edited by katie; 02-26-2010 at 08:16 PM. Reason: misspelling (why are the chars never on the keys I press?) |
|
#56
|
||||
|
||||
|
It does not support customizable table names (yet).
__________________
Regards, Rosali __________________ MyRoundcube Project http://myroundcube.googlecode.com MyRoundcube Online Demo http://mail4us.net MyRoundcube Plugins Generic Installation Guide http://mail4us.net/myroundcube Mailing List http://mail4us.net/?_action=plugin.nabble |
|
#57
|
|||
|
|||
|
Thanks.
I fixes that (renamed the table and the entry) - the other thing was that I didnt checked the new Calendar-Settings after loading the last version, mine were from initial setup. ![]() After fixing both the dummy-entries are gone, but I cant save entries, it says in the RC-Errortab: Service unavailable Mail still works. |
|
#58
|
|||
|
|||
|
I see in trunk there is 'alpha' support for davical. Let me know if you'd like some help banging on it with davical. We have a small non-critical install of davical .9.8.3 that we can help test with.
|
|
#59
|
|||
|
|||
|
I've downloaded this and moved it to the plugins folder, added it to the plugins in main.inc.php, ran the SQL.. but I'm not seeing the Calender anywhere?
Found it ![]() typos.. gotta love them Last edited by gznadroj; 03-06-2010 at 09:47 PM. |
|
#60
|
||||
|
||||
|
Download from here: LazloNL's roundcube-calendar at master - GitHub
__________________
Regards, Rosali __________________ MyRoundcube Project http://myroundcube.googlecode.com MyRoundcube Online Demo http://mail4us.net MyRoundcube Plugins Generic Installation Guide http://mail4us.net/myroundcube Mailing List http://mail4us.net/?_action=plugin.nabble |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|