SQLite format 3 @ � f B � � ._ � X������ J{ 7m 5Z + 6e J
� � * 3/2024-08-07 01:31:40Imported Contacts
y
[ �? 3?
�5S2024-08-07 01:31:40testsmtptestsmtp@roshanchandy.comtestsmtpBEGIN:VCARD
VERSION:3.0
UID:2023-09-1205:26:18.efa8a113-931f-da40-e697-7655f46005bb.testsmtp@roshanchandy.com
N:testsmtp;;;;
FN:testsmtp
EMAIL;TYPE=INTERNET;TYPE=INTERNET:testsmtp@roshanchandy.com
END:VCARD testsmtp testsmtp@roshanchandy.com� 37
�C2024-08-07 01:31:40testtest@buildmydesign.intestBEGIN:VCARD
VERSION:3.0
UID:2023-07-1014:00:24.20afe548-2aae-fca1-24a7-691aaa3482f4.test@buildmydesign.in
N:test;;;;
FN:test
EMAIL;TYPE=INTERNET;TYPE=INTERNET:test@buildmydesign.in
END:VCARD test test@buildmydesign.in� 3%U
%�{q2024-08-07 01:31:40roshanchandyroshanchandy@server.skillcountry.comroshanchandyBEGIN:VCARD
VERSION:3.0
UID:2021-09-1717:10:24.952957f6-9f32-6a5e-472f-720a79844658.roshanchandy@119-18-62-148.webhostbox.net
N:roshanchandy;;;;
FN:roshanchandy
EMAIL;TYPE=INTERNET;TYPE=INTERNET:roshanchandy@server.skillcountry.com
END:VCARD roshanchandy roshanchandy@server.skillcountry.com
� ��� 32024-08-07 01:31:40 32024-08-07 01:31:40 32024-08-07 01:31:40
� �
� ���
� � I
3 %
G
2022-09-06 11:35:12roshanchandyroshanchandy@roshanchandy.com
� �
� � !G roshanchandy@roshanchandy.com
0 0 �M %33 �roshanchandylocalhost2022-09-06 11:35:122024-08-07 01:31:40en_USa:5:{s:11:"search_mods";a:4:{s:1:"*";a:2:{s:7:"subject";i:1;s:4:"from";i:1;}s:10:"INBOX.Sent";a:2:{s:7:"subject";i:1;s:2:"to";i:1;}s:12:"INBOX.Drafts";a:2:{s:7:"subject";i:1;s:2:"to";i:1;}s:5:"INBOX";a:2:{s:7:"subject";i:1;s:4:"from";i:1;}}s:12:"archive_mbox";s:13:"INBOX.Archive";s:11:"client_hash";s:16:"XA9nFRmIE4G6JxE0";s:9:"junk_mbox";s:10:"INBOX.spam";s:15:"namespace_fixed";b:1;}
� � % roshanchandylocalhost � A�������� a ` _ ^ ] \ [ Z
� #�H���m�� $Mbb1ce584b7d34413f1f5ad458c940c97 $Mb03158155298069e0b0cf1382d5c6064$Mfc2a19d1ce9b0856f9147377e8bbf0a2$M340ef283af4976047ccc40f45255d706$Mb4bc8ec2ccad47fad352ba2bf10cec8c$Me12ae1cbd67ebcdb4603d75741aef3a2$Mc65109713378d14d1322db00d7570535$Mea4d69066d59384a79379c1139ebd784#M d0a799a2b19d28a0a6840d29448d6f4d
) �����qYA) 32024-08-07 01:34:38 32023-11-09 03:55:3632023-11-07 04:10:4032023-11-06 09:27:1332023-10-14 11:09:5732023-08-16 21:53:1132023-05-11 19:25:0032023-05-04 09:55:143 2022-09-06 11:45:32
� c
�
"����7
�
� 4�3333333�6666 � �))�tableold_dictionaryold_dictionaryCREATE TABLE "old_dictionary" (
user_id integer DEFAULT NULL,
language varchar(16) NOT NULL,
data text NOT NULL
)
y ��Ctablefilestorefilestore(CREATE TABLE filestore (
file_id integer NOT NULL PRIMARY KEY,
user_id integer NOT NULL,
context varchar(32) NOT NULL,
filename varchar(128) NOT NULL,
mtime integer NOT NULL,
data text NOT NULL
)��?)�indexix_cache_messages_expirescache_messages'CREATE INDEX ix_cache_messages_expires ON cache_message�+##�itableattachmentsattachments/CREATE TABLE attachments (
attachment_id integer NOT NULL PRIMARY KEY,
event_id integer NOT NULL default '0',
filename varchar(255) NOT NULL default '',
mimetype varchar(255) NOT NULL default '',
size integer NOT NULL default '0',
data text NOT NULL default '',
CONSTRAINT fk_attachment_event_id FOREIGN KEY (event_id)
REFERENCES events(event_id)
)�J*�otableeventsevents-CREATE TABLE events (
event_id integer NOT NULL PRIMARY KEY,
calendar_id integer NOT NULL default '0',
recurrence_id integer NOT NULL default '0',
uid varchar(255) NOT NULL default '',
instance varchar(16) NOT NULL default '',
isexception tinyint(1) NOT NULL default '0',
created datetime NOT NULL default '1000-01-01 00:00:00',
changed datetime NOT NULL default '1000-01-01 00:00:00',
sequence integer NOT NULL default '0',
start datetime NOT NULL default '1000-01-01 00:00:00',
end datetime NOT NULL default '1000-01-01 00:00:00',
recurrence varchar(255) default NULL,
title varchar(255) NOT NULL,
description text NOT NULL,
location varchar(255) NOT NULL default '',
categories varchar(255) NOT NULL default '',
url varchar(255) NOT NULL default '',
all_day tinyint(1) NOT NULL default '0',
free_busy tinyint(1) NOT NULL default '0',
priority tinyint(1) NOT NULL default '0',
sensitivity tinyint(1) NOT NULL default '0',
status varchar(32) NOT NULL default '',
alarms text default NULL,
attendees text default NULL,
notifyat datetime default NULL,
CONSTRAINT fk_events_calendar_id FOREIGN KEY (calendar_id)
REFERENCES calendars(calendar_id)
)�)�ytablecalendarscalendars,CREATE TABLE calendars (
calendar_id integer NOT NULL PRIMARY KEY,
user_id integer NOT NULL default '0',
name varchar(255) NOT NULL default '',
color varchar(255) NOT NULL default '',
showalarms tinyint(1) NOT NULL default '1', driver varchar(255) NOT NULL default 'database',
CONSTRAINT fk_calendars_user_id FOREIGN KEY (user_id)
REFERENCES users(user_id)
)+(? indexsqlite_autoindex_system_1system+o'�9tablesystemsystem*CREATE TABLE system (
name varchar(64) NOT NULL PRIMARY KEY,
value text NOT NULL
)m;%�indexix_cache_shared_expirescache_sharedCREATE INDEX ix_cache_shared_expires ON cache_shared(expires)7K% indexsqlite_autoindex_cache_shared_1cache_shared�6%%�/tablecache_sharedcache_sharedCREATE TABLE cache_shared (
cache_key varchar(255) NOT NULL,
expires datetime DEFAULT NULL,
data text NOT NULL,
PRIMARY KEY (cache_key)
)Y1uindexix_session_changedsessionCREATE INDEX ix_session_changed ON session (changed)-A indexsqlite_autoindex_session_1session�V�tablesessionsessionCREATE TABLE session (
sess_id varchar(128) NOT NULL PRIMARY KEY,
changed datetime NOT NULL default '0000-00-00 00:00:00',
ip varchar(40) NOT NULL default '',
vars text NOT NULL
)f/�indexix_users_usernameusersCREATE UNIQUE INDEX ix_users_username ON users(username, mail_host)�
�tableusersusersCREATE TABLE users (
user_id integer NOT NULL PRIMARY KEY,
username varchar(128) NOT NULL default '',
mail_host varchar(128) NOT NULL default '',
created datetime NOT NULL default '0000-00-00 00:00:00',
last_login datetime DEFAULT NULL,
failed_login datetime DEFAULT NULL,
failed_login_counter integer DEFAULT NULL,
language varchar(16),
preferences text DEFAULT NULL
)
w
( ��C(�A
{�� 7V
~ 7 7u A1))�tablecache_messagescache_messages%CREATE TABLE cache_messages (
user_id�.A11�tablecaldav_attachmentscaldav_attachmentsCCREATE TABLE caldav_attachments (
attachment_id integer NOT NULL PRIMARY KEY,
event_id integer NOT NULL DEFAULT '0',
filename varchar(255) NOT NULL DEFAULT '',
mimetype varchar(255) NOT NULL DEFAULT '',
size integer NOT NULL DEFAULT '0',
data longtext NOT NULL,
CONSTRAINT fk_caldav_attachments_event_id FOREIGN KEY (event_id)
REFERENCES caldav_events(event_id)
)�,++�mtableitipinvitationsitipinvitations0CREATE TABLE itipinvitations (
token varchar(64) NOT NULL PRIMARY KEY,
event_uid varchar(255) NOT NULL,
user_id integer NOT NULL default '0',
event text NOT NULL,
expires datetime NOT NULL default '1000-01-01 00:00:00',
cancelled tinyint(1) NOT NULL default '0',
CONSTRAINT fk_itipinvitations_user_id FOREIGN KEY (user_id)
REFERENCES users(user_id)
) ##�itableattachmentsattachments/CREATE TABLE attachments (
attachment_id integer NOT NULL PRIMARY KEY,
event_id integer NOT NULL default '0',
filename varchar(255) NOT NULL default '',
mimetype varchar(255) NOT NULL default '',
size integer NOT NULL default '0',
data text NOT NULL default '',
CONSTRAINT fk_attachment_event_id FOREIGN KEY (event_id)
REFERENCES events(event_id)
)�J*�otableeventsevents-CREATE TABLE events (
event_id integer NOT NULL PRIMARY KEY,
calendar_id integer NOT NULL default '0',
recurrence_id integer NOT NULL default '0',
uid varchar(255) NOT NULL default '',
instance varchar(16) NOT NULL default '',
isexception tinyint(1) NOT NULL default '0',
created datetime NOT NULL default '1000-01-01 00:00:00',
changed dAJU/ indexsqlite_autoindex_carddav_xsubtypes_1carddav_xsubtypesM�,I//�tablecarddav_xsubtypescarddav_xsubtypesLCREATE TABLE carddav_xsubtypes (
id integer NOT NULL PRIMARY KEY,
typename VARCHAR(128) NOT NULL, -- name of the type
subtype VARCHAR(128) NOT NULL, -- name of the subtype
abook_id integer NOT NULL,
-- not enforced by sqlite < 3.6.19
FOREIGN KEY(abook_id) REFERENCES carddav_addressbooks(id) ON DELETE CASCADE ON UPDATE CASCADE,
UNIQUE(typename,subtype,abook_id)
)�HG-�indexcarddav_contacts_abook_id_idxcarddav_contactsKCREATE INDEX carddav_contacts_abook_id_idx ON carddav_contacts(abook_id)?GS- indexsqlite_autoindex_carddav_contacts_2carddav_contactsI?FS- indexsqlite_autoindex_carddav_contacts_1carddav_contactsH�>E--�/tablecarddav_contactscarddav_contactsGCREATE TABLE carddav_contacts (
id integer NOT NULL PRIMARY KEY,
abook_id integer NOT NULL,
name VARCHAR(255) NOT NULL, -- display name
email VARCHAR(255), -- ", " separated list of mail addresses
firstname VARCHAR(255),
surname VARCHAR(255),
organization VARCHAR(255),
showas VARCHAR(32) NOT NULL DEFAULT '', -- special display type (e.g., as a company)
vcard TEXT NOT NULL, -- complete vcard
etag VARCHAR(255) NOT NULL, -- entity tag, can be used to check if card changed on server
uri VARCHAR(255) NOT NULL, -- path of the card on the server
cuid VARCHAR(255) NOT NULL, -- unique identifier of the card within the collection
UNIQUE(uri,abook_id),
UNIQUE(cuid,abook_id),
-- not enforced by sqlite < 3.6.19
FOREIGN KEY(abook_id) REFERENCES carddav_addressbooks(id) ON DELETE CASCADE ON UPDATE CASCADE
)|.9+�!indexix_itipinvitations_uiditipinvitations2CREATE INDEX ix_itipinvitations_uid ON itipinvitations(user_id, event_uid)=-Q+ indexsqlite_autoindex_itipinvitations_1itipinvitations1
� �
Default
� ���� J!calendar-caldav-version20160720$ ;!calendar-caldav-version2023100600&?!calendar-database-version2023100600/!roundcube-version2022081200
� ���� 6calendar-caldav-versio;calendar-caldav-version ?calendar-database-version/ roundcube-version
� � Defaultcc0000database
� ���
� ���
F @ �n�����c�@ �� CZW1 indexsqlite_autoindex_carddav_migrations_1carddav_migrationsY�[Y11�atablecarddav_migrationscarddav_migrationsSCREATE TABLE "carddav_migrations" (
id integer NOT NULL PRIMARY KEY,
filename TEXT NOT NULL,
processed_at TIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
UNIQUE(filename)
)�
WK1�%indexcarddav_group_user_group_id_idxcarddav_group_userVCREATE INDEX carddav_group_user_group_id_idx ON carddav_group_user(group_id)�VO1�-indexcarddav_group_user_contact_id_idxcarddav_group_userPCREATE INDEX carddav_group_user_contact_id_idx ON carddav_group_user(contact_id)zUC)�indexcarddav_groups_abook_id_idxcarddav_groupsOCREATE INDEX carddav_groups_abook_id_idx ON carddav_groups(abook_id)�TI/�!indexcarddav_xsubtypes_abook_id_idxcarddav_xsubtypesNCREATE INDEX carddav_xsubtypes_abook_id_idx ON carddav_xsubtypes(abook_id);SO) indexsqlite_autoindex_carddav_groups_2carddav_groupsU;RO) indexsqlite_autoindex_carddav_groups_1carddav_groupsT�iQ))�
tablecarddav_groupscarddav_groupsFCREATE TABLE "carddav_groups" (
id integer NOT NULL PRIMARY KEY,
abook_id integer NOT NULL,
name VARCHAR(255) NOT NULL, -- display name
vcard TEXT, -- complete vcard
etag VARCHAR(255), -- entity tag, can be used to check if card changed on server
uri VARCHAR(255), -- path of the card on the server
cuid VARCHAR(255), -- unique identifier of the card within the collection
UNIQUE(uri,abook_id),
UNIQUE(cuid,abook_id),
-- not enforced by sqlite < 3.6.19
FOREIGN KEY(abook_id) REFERENCES carddav_addressbooks(id) ON DELETE CASCADE ON UPDATE CASCADE
)COW1 indexsqlite_autoindex_carddav_group_user_1carddav_group_userR�N11�Ktablecarddav_group_usercarddav_group_userQCREATE TABLE carddav_group_user (
group_id integer NOT NULL,
contact_id integer NOT NULL,
PRIMARY KEY(group_id,contact_id),
-- not enforced by sqlite < 3.6.19
FOREIGN KEY(group_id) REFERENCES carddav_groups(id) ON DELETE CASCADE ON UPDATE CASCADE,
FOREIGN KEY(contact_id) REFERENCES carddav_contacts(id) ON DELETE CASCADE ON UPDATE CASCADE
) �U/ indexsqlite_autoindex_carddav_xsubtypes_1carddav_xsubtypesM�,I//�tablecarddav_xsubtypescarddav_xsubtypesLCREATE TABLE carddav_xsubtypes (
id integer NOT NULL PRIMARY KEY,
typename VARCHAR(128) NOT NULL, -- name of the type
subtype VARCHAR(128) NOT NULL, -- name of the subtype
abook_id integer NOT NULL,
-- not enforced by sqlite < 3.6.19
FOREIGN KEY(abook_id) REFERENCES carddav_addressbooks(id) ON DELETE CASCADE ON UPDATE CASCADE,
UNIQUE(typename,subtype,abook_id)
)�HG-�indexcarddav_contacts_abook_id_idxcarddav_contactsKCREATE INDEX carddav_contacts_abook_id_idx ON carddav_contacts(abook_id)?GS- indexsqlite_autoindex_carddav_contacts_2carddav_contactsI?FS- indexsqlite_autoindex_carddav_contacts_1carddav_contactsH�>E--�/tablecarddav_contactscarddav_contactsGCREATE TABLE carddav_contacts (
id integer NOT NULL PRIMARY KEY,
abook_id integer NOT NULL,
name VARCHAR(255) NOT NULL, -- display name
email VARCHAR(255), -- ", " separated list of mail addresses
firstname VARCHAR(255),
surname VARCHAR(255),
organization VARCHAR(255),
showas VARCHAR(32) NOT NULL DEFAULT '', -- special display type (e.g., as a company)
vcard TEXT NOT NULL, -- complete vcard
etag VARCHAR(255) NOT NULL, -- entity tag, can be used to check if card changed on server
uri VARCHAR(255) NOT NULL, -- path of the card on the server
cuid VARCHAR(255) NOT NULL, -- unique identifier of the card within the collection
UNIQUE(uri,abook_id),
UNIQUE(cuid,abook_id),
-- not enforced by sqlite < 3.6.19
FOREIGN KEY(abook_id) REFERENCES carddav_addressbooks(id) ON DELETE CASCADE ON UPDATE CASCADE
)
O ��a ?� O B � �X''�itableold_responsesold_r�)e;;�mviewcaldav_calendars_mergedcaldav_calendars_mergedCREATE VIEW caldav_calendars_merged AS
SELECT c.calendar_id, c.user_id, c.name, c.color, c.showalarms, c.driver, cc.readonly, cc.caldav_url, cc.caldav_tag, cc.caldav_user, cc.caldav_pass, cc.caldav_oauth_provider, cc.caldav_last_change, c.calendar_id AS id
FROM calendars as c JOIN caldav_calendars as cc ON c.calendar_id = cc.calendar_id
WHERE c.driver='caldav'�dG'�)triggerUpdateLastTimeForCalDAVEventscaldav_eventsCREATE TRIGGER UpdateLastTimeForCalDAVEvents
AFTER UPDATE
ON caldav_events
FOR EACH ROW
BEGIN
UPDATE caldav_events SET caldav_last_change = CURRENT_TIMESTAMP WHERE event_id = old.event_id;
END9cM' indexsqlite_autoindex_caldav_events_1caldav_eventsf�Ib''�Qtablecaldav_eventscaldav_eventseCREATE TABLE "caldav_events" (
event_id integer NOT NULL PRIMARY KEY,
calendar_id integer NOT NULL,
recurrence_id integer NOT NULL DEFAULT '0',
uid varchar(255) NOT NULL DEFAULT '',
instance varchar(16) NOT NULL DEFAULT '',
isexception tinyint(1) NOT NULL DEFAULT '0',
created datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
changed datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
sequence integer NOT NULL DEFAULT '0',
start datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
end datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
recurrence varchar(255) DEFAULT NULL,
title varchar(255) NOT NULL,
description text NOT NULL,
location varchar(255) NOT NULL DEFAULT '',
categories varchar(255) NOT NULL DEFAULT '',
url varchar(255) NOT NULL DEFAULT '',
all_day tinyint(1) NOT NULL DEFAULT '0',
free_busy tinyint(1) NOT NULL DEFAULT '0',
priority tinyint(1) NOT NULL DEFAULT '0',
sensitivity tinyint(1) NOT NULL DEFAULT '0',
status varchar(32) NOT NULL DEFAULT '',
alarms text NULL DEFAULT NULL,
attendees text DEFAULT NULL,
notifyat datetime DEFAULT NULL,
caldav_url varchar(255) NOT NULL,
caldav_tag varchar(255) DEFAULT NULL,
caldav_last_change timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
CONSTRAINT uk_caldav_event UNIQUE (calendar_id,recurrence_id,uid,caldav_tag,instance),
CONSTRAINT fk_caldav_events_calendar_id FOREIGN KEY (calendar_id)
REFERENCES calendars(calendar_id)
)�S`--�Ytablecaldav_calendarscaldav_calendarsdCREATE TABLE "caldav_calendars" (
id integer NOT NULL PRIMARY KEY,
calendar_id integer NOT NULL,
readonly tinyint(1) NOT NULL DEFAULT '1',
caldav_url varchar(255) NOT NULL,
caldav_tag varchar(255) DEFAULT NULL,
caldav_user varchar(255) DEFAULT NULL,
caldav_pass varchar(1024) DEFAULT NULL,
caldav_oauth_provider varchar(255) DEFAULT NULL,
caldav_last_change timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
CONSTRAINT fk_caldav_calendars_calendar_id FOREIGN KEY (calendar_id)
REFERENCES calendars(calendar_id) ON DELETE CASCADE
)A]U/ indexsqlite_autoindex_cp_schema_version_1cp_schema_versionE�_\//�mtablecp_schema_versioncp_schema_versionWCREATE TABLE `cp_schema_version` (
version_id integer NOT NULL PRIMARY KEY,
version varchar(128) NOT NULL UNIQUE,
applied datetime NOT NULL default '0000-00-00 00:00:00')�w[55�tablecarddav_addressbookscarddav_addressbooksDCREATE TABLE "carddav_addressbooks" (
id integer NOT NULL PRIMARY KEY,
name TEXT NOT NULL,
username TEXT NOT NULL,
password TEXT NOT NULL,
url TEXT NOT NULL,
active TINYINT UNSIGNED NOT NULL DEFAULT 1,
user_id integer NOT NULL,
last_updated BIGINT NOT NULL DEFAULT 0, -- time stamp (seconds since epoch) of the last update of the local database
refresh_time INT NOT NULL DEFAULT 3600, -- time span (seconds) after that the local database will be refreshed, default 1h
sync_token TEXT NOT NULL DEFAULT '', -- sync-token the server sent us for the last sync
presetname TEXT, -- presetname
use_categories TINYINT NOT NULL DEFAULT 0,
-- not enforced by sqlite < 3.6.19
FOREIGN KEY(user_id) REFERENCES users(user_id) ON DELETE CASCADE ON UPDATE CASCADE
)
9
N �Q�9�\ � 9
>