Home
last modified time | relevance | path

Searched refs:rfcsize (Results 1 – 18 of 18) sorted by relevance

/dports/mail/dbmail/dbmail-3.2.5/sql/mysql/
H A Dmigrate_from_1.x_to_2.0_innodb.mysql109 rfcsize bigint(21) NOT NULL default '0',
114 INSERT INTO dbmail_physmessage (id, messagesize, rfcsize, internal_date)
115 SELECT message_idnr, messagesize, rfcsize, internal_date
124 DROP COLUMN rfcsize,
H A D2_3_5-2_3_6.mysql57 ALTER TABLE dbmail_physmessage MODIFY COLUMN rfcsize BIGINT(20) DEFAULT 0 NOT NULL;
H A D2_2-3_0.mysql213 MODIFY COLUMN rfcsize BIGINT(20) UNSIGNED DEFAULT 0 NOT NULL;
H A Dcreate_tables.mysql295 `rfcsize` bigint(20) UNSIGNED NOT NULL default '0',
/dports/mail/dbmail/dbmail-3.2.5/sql/postgresql/
H A Dmigrate_from_1.x_to_2.0.pgsql129 rfcsize INT8 DEFAULT '0' NOT NULL,
135 INSERT INTO dbmail_physmessage (id, messagesize, rfcsize, internal_date)
136 SELECT message_idnr, messagesize, rfcsize, internal_date FROM messages;
162 ALTER TABLE dbmail_messages DROP COLUMN rfcsize;
H A Dcreate_tables.pgsql133 rfcsize INT8 DEFAULT '0' NOT NULL,
/dports/mail/dbmail/dbmail-3.2.5/src/modules/
H A Dsortsieve.c587 int rfcsize; in sort_getsize() local
589 rfcsize = dbmail_message_get_size(m->message, TRUE); in sort_getsize()
591 TRACE(TRACE_INFO, "Getting message size [%d]", rfcsize); in sort_getsize()
593 sieve2_setvalue_int(s, "size", rfcsize); in sort_getsize()
/dports/mail/dbmail/dbmail-3.2.5/src/
H A Ddbmailtypes.h563 uint64_t rfcsize; member
H A Ddm_http.c272 evbuffer_add_printf(buf, " \"%" PRIu64 "\":{\"size\":%" PRIu64 "}", *uid, info->rfcsize); in Http_getMailboxes()
H A Ddm_imapsession.c1145 uint64_t rfcsize = msginfo->rfcsize; in _fetch_get_items() local
1147 dbmail_imap_session_buff_printf(self, "RFC822.SIZE %" PRIu64 "", rfcsize); in _fetch_get_items()
H A Ddm_message.c1115 uint64_t rfcsize = (uint64_t)dbmail_message_get_size(self,TRUE); in _update_message() local
1118 assert(rfcsize); in _update_message()
1120 DBPFX, size, rfcsize, self->id)) in _update_message()
H A Ddm_mailbox.c1580 case 17: found = (int) (msginfo->rfcsize > s->size); in mailbox_search()
1583 case 18: found = (int) (msginfo->rfcsize < s->size); in mailbox_search()
H A Ddm_misc.c1083 dst->rfcsize= src->rfcsize; in traverse_tree_copy_MessageInfo()
H A Ddm_mailboxstate.c166 result->rfcsize = db_result_get_u64(r,IMAP_NFLAGS + 1); in state_load_messages()
H A Dimapcommands.c1753 info->rfcsize = strlen(message); in _ic_append_enter()
/dports/mail/dbmail/dbmail-3.2.5/sql/oracle/
H A Ddbmail_schema.sql404 rfcsize number(20) default '0' NOT NULL, field
/dports/mail/dbmail/dbmail-3.2.5/sql/sqlite/
H A Dcreate_tables.sqlite257 rfcsize INTEGER DEFAULT '0' NOT NULL,
/dports/converters/wkhtmltopdf/qt-5db36ec/tests/auto/qnetworkreply/
H A Dtst_qnetworkreply.cpp1671 qint64 rfcsize = QFileInfo(SRCDIR "/rfc3252.txt").size(); in headFromHttp_data() local
1677 …QTest::newRow("rfc" + proxies.at(i).tag) << rfcsize << QUrl("http://" + QtNetworkSettings::serverN… in headFromHttp_data()
1680 …QTest::newRow("with-authentication" + proxies.at(i).tag) << rfcsize << QUrl("http://" + QtNetworkS… in headFromHttp_data()