Home
last modified time | relevance | path

Searched refs:mailboxName (Results 1 – 25 of 132) sorted by relevance

123456

/dports/mail/trojita/trojita-0.7/src/Imap/Tasks/
H A DSubscribeUnsubscribeTask.cpp36 SubscribeUnsubscribeTask::SubscribeUnsubscribeTask(Model *model, const QString &mailboxName, Subscr… in SubscribeUnsubscribeTask() argument
37 ImapTask(model), operation(operation), mailboxName(mailboxName) in SubscribeUnsubscribeTask()
43 …ribeUnsubscribeTask(Model *model, ImapTask *parentTask, const QString &mailboxName, SubscribeUnsub… in SubscribeUnsubscribeTask() argument
44 ImapTask(model), conn(parentTask), operation(operation), mailboxName(mailboxName) in SubscribeUnsubscribeTask()
58 tag = parser->subscribe(mailboxName); in perform()
61 tag = parser->unSubscribe(mailboxName); in perform()
75 … TreeItemMailbox *mailbox = dynamic_cast<TreeItemMailbox *>(model->findMailboxByName(mailboxName)); in handleStateHelper()
105 return QStringLiteral("Subscription update for %1").arg(mailboxName); in debugIdentification()
H A DListChildMailboxesTask.cpp65 QString mailboxName = mailbox->mailbox(); in perform() local
66 if (mailboxName.isNull()) in perform()
67 mailboxName = QStringLiteral("%"); in perform()
69 mailboxName += mailbox->separator() + QLatin1Char('%'); in perform()
81 tag = parser->list(QLatin1String(""), mailboxName, returnOptions); in perform()
H A DSubscribeUnsubscribeTask.h40 …SubscribeUnsubscribeTask(Model *model, const QString &mailboxName, SubscribeUnsubscribeOperation o…
41 …SubscribeUnsubscribeTask(Model *model, ImapTask *parentTask, const QString &mailboxName, Subscribe…
53 QString mailboxName; variable
/dports/deskutils/egroupware/egroupware/api/src/Mail/Imap/
H A DCyrus.php91 $mailboxName = $this->getUserMailboxString($username);
94 $mboxes = (array)$this->getMailboxes($mailboxName, 1);
156 $mailboxName = $this->getUserMailboxString($_username);
158 $this->setQuota($mailboxName, array('STORAGE' => (int)$_quota > 0 ? (int)$_quota*1024 : -1));
181 $mailboxName = $this->getUserMailboxString($_hookValues['account_lid'], $mailboxName);
184 $folderInfo = $this->getMailboxes('', $mailboxName, true);
188 $this->createMailbox($mailboxName);
189 $this->setACL($mailboxName, $username, array('rights' => 'aeiklprstwx'));
/dports/mail/libvmime/vmime-0.9.2/src/vmime/net/imap/
H A DIMAPCommand.cpp93 << " " << IMAPUtils::quoteString(mailboxName); in LIST()
111 cmd << IMAPUtils::quoteString(mailboxName); in SELECT()
136 cmd << "STATUS " << IMAPUtils::quoteString(mailboxName); in STATUS()
154 (const string& mailboxName, const std::vector <string>& params) in CREATE() argument
158 cmd << "CREATE " << IMAPUtils::quoteString(mailboxName); in CREATE()
182 cmd << "DELETE " << IMAPUtils::quoteString(mailboxName); in DELETE()
190 (const string& mailboxName, const string& newMailboxName) in RENAME() argument
194 cmd << "RENAME " << IMAPUtils::quoteString(mailboxName) in RENAME()
274 cmd << "APPEND " << IMAPUtils::quoteString(mailboxName); in APPEND()
300 (const messageSet& msgs, const string& mailboxName) in COPY() argument
[all …]
H A DIMAPCommand.hpp58 static shared_ptr <IMAPCommand> LIST(const string& refName, const string& mailboxName);
59 …static shared_ptr <IMAPCommand> SELECT(const bool readOnly, const string& mailboxName, const std::…
60 …static shared_ptr <IMAPCommand> STATUS(const string& mailboxName, const std::vector <string>& attr…
61 …static shared_ptr <IMAPCommand> CREATE(const string& mailboxName, const std::vector <string>& para…
62 static shared_ptr <IMAPCommand> DELETE(const string& mailboxName);
63 static shared_ptr <IMAPCommand> RENAME(const string& mailboxName, const string& newMailboxName);
66 …static shared_ptr <IMAPCommand> APPEND(const string& mailboxName, const std::vector <string>& flag…
67 static shared_ptr <IMAPCommand> COPY(const messageSet& msgs, const string& mailboxName);
/dports/www/groupoffice/groupoffice-6.4.231-php-71/modules/email/controller/
H A DPortletController.php63 $mailboxName = $params['mailbox'];
65 $portletFolder = $this->_loadPortletFolder($accountId,$mailboxName);
71 $portletFolder->folder_name = $mailboxName;
82 private function _loadPortletFolder($accountId,$mailboxName){ argument
104 $mailboxName = $params['mailbox'];
106 $portletFolder = $this->_loadPortletFolder($accountId,$mailboxName);
196 $mailboxName = implode('_', $parts);
203 $mailbox = new \GO\Email\Model\ImapMailbox($account, array('name' => $mailboxName));
307 * @param StringHelper $mailboxName
310 private function _showInPortlet($accountId,$mailboxName){ argument
[all …]
H A DFolderController.php52 foreach ($mailboxs as $mailboxName) {
54 $mailbox = new \GO\Email\Model\ImapMailbox($account, array("name"=>$mailboxName));
86 foreach ($mailboxs as $mailboxName) {
88 $mailbox = new \GO\Email\Model\ImapMailbox($account, array("name"=>$mailboxName));
/dports/mail/trojita/trojita-0.7/src/Imap/Model/
H A DSQLCache.cpp472 queryChildMailboxes.bindValue(0, mailboxName(mailbox)); in childMailboxes()
512 parentFields << mailboxName(mailbox); in setChildMailboxes()
573 queryUidMapping.bindValue(0, mailboxName(mailbox)); in uidMapping()
593 querySetUidMapping.bindValue(0, mailboxName(mailbox)); in setUidMapping()
647 queryClearMessage1.bindValue(0, mailboxName(mailbox)); in clearMessage()
649 queryClearMessage2.bindValue(0, mailboxName(mailbox)); in clearMessage()
651 queryClearMessage3.bindValue(0, mailboxName(mailbox)); in clearMessage()
667 queryMessageFlags.bindValue(0, mailboxName(mailbox)); in msgFlags()
757 queryMessagePart.bindValue(0, mailboxName(mailbox)); in messagePart()
777 querySetMessagePart.bindValue(0, mailboxName(mailbox)); in setMsgPart()
[all …]
H A DTaskFactory.cpp188 …ubscribeTask *TaskFactory::createSubscribeUnsubscribeTask(Model *model, const QString &mailboxName, in createSubscribeUnsubscribeTask() argument
191 return new SubscribeUnsubscribeTask(model, mailboxName, operation); in createSubscribeUnsubscribeTask()
194 …ory::createSubscribeUnsubscribeTask(Model *model, ImapTask *parentTask, const QString &mailboxName, in createSubscribeUnsubscribeTask() argument
197 return new SubscribeUnsubscribeTask(model, parentTask, mailboxName, operation); in createSubscribeUnsubscribeTask()
/dports/mail/thunderbird/thunderbird-91.8.0/comm/mailnews/imap/src/
H A DnsImapProtocol.h329 void SelectMailbox(const char* mailboxName);
335 void XMailboxInfo(const char* mailboxName);
338 void GetMyRightsForFolder(const char* mailboxName);
360 void RefreshFolderACLView(const char* mailboxName,
611 void CreateMailbox(const char* mailboxName);
612 void DeleteMailbox(const char* mailboxName);
621 void FolderDeleted(const char* mailboxName);
623 void FolderNotCreated(const char* mailboxName);
627 bool FolderIsSelected(const char* mailboxName);
642 void Subscribe(const char* mailboxName);
[all …]
H A DnsImapServerResponseParser.cpp527 PL_strfree(mailboxName); in response_data()
1408 if (mailboxName) { in parse_address()
1409 addressLine += mailboxName; in parse_address()
1422 PR_Free(mailboxName); in parse_address()
2027 if (mailboxName) { in xmailboxinfo_data()
2191 char* mailboxName; in myrights_data() local
2197 mailboxName = CreateAstring(); in myrights_data()
2200 if (mailboxName) { in myrights_data()
2217 PR_Free(mailboxName); in myrights_data()
2251 PR_Free(mailboxName); in acl_data()
[all …]
H A DnsImapProtocol.cpp2563 nsCString mailboxName; in ProcessSelectedStateURL() local
6063 if (mailboxName) { in OnLSubFolders()
6070 PR_Free(mailboxName); in OnLSubFolders()
6082 if (mailboxName) { in OnAppendMsgFromFile()
6111 PR_Free(mailboxName); in OnAppendMsgFromFile()
6671 command.Append(mailboxName); in XMailboxInfo()
6812 const char* mailboxName) { in DeleteMailboxRespectingSubscriptions() argument
6825 Unsubscribe(mailboxName); in DeleteMailboxRespectingSubscriptions()
7067 if (mailboxName) { in FolderDeleted()
7537 const char* mailboxName) { in CreateMailboxRespectingSubscriptions() argument
[all …]
/dports/mail/archiveopteryx-devel/aox-96ab17e/aox/
H A Daliases.cpp95 UString mailboxName; member in CreateAliasData
122 d->mailboxName = c.toUnicode( next() ); in execute()
129 if ( !d->mailboxName.isEmpty() ) in execute()
137 if ( !d->mailboxName.isEmpty() ) { in execute()
138 d->mailbox = Mailbox::obtain( d->mailboxName, false ); in execute()
140 error( "No mailbox named " + d->mailboxName.utf8() ); in execute()
/dports/mail/archiveopteryx/archiveopteryx-3.2.0/aox/
H A Daliases.cpp95 UString mailboxName; member in CreateAliasData
122 d->mailboxName = c.toUnicode( next() ); in execute()
129 if ( !d->mailboxName.isEmpty() ) in execute()
137 if ( !d->mailboxName.isEmpty() ) { in execute()
138 d->mailbox = Mailbox::obtain( d->mailboxName, false ); in execute()
140 error( "No mailbox named " + d->mailboxName.utf8() ); in execute()
/dports/www/sogo/SOGo-5.4.0/UI/MailerUI/
H A DUIxMailActions.m51 NSString *accountName, *mailboxName, *messageName;
61 mailboxName = [drafts absoluteImap4Name];
62 mailboxName = [mailboxName substringWithRange: NSMakeRange(1, [mailboxName length] -2)];
67 mailboxName, @"mailboxPath",
91 NSString *accountName, *mailboxName, *messageName;
106 mailboxName = [drafts absoluteImap4Name];
107 mailboxName = [mailboxName substringWithRange: NSMakeRange(1, [mailboxName length] -2)];
112 mailboxName, @"mailboxPath",
H A DUIxMailAccountActions.m120 NSString *accountName, *mailboxName, *messageName;
177 mailboxName = [drafts absoluteImap4Name]; // Ex: /INBOX/Drafts/
178 mailboxName = [mailboxName substringWithRange: NSMakeRange(1, [mailboxName length] -2)];
182 mailboxName, @"mailboxPath",
/dports/www/sogo-activesync/SOGo-5.4.0/UI/MailerUI/
H A DUIxMailActions.m51 NSString *accountName, *mailboxName, *messageName;
61 mailboxName = [drafts absoluteImap4Name];
62 mailboxName = [mailboxName substringWithRange: NSMakeRange(1, [mailboxName length] -2)];
67 mailboxName, @"mailboxPath",
91 NSString *accountName, *mailboxName, *messageName;
106 mailboxName = [drafts absoluteImap4Name];
107 mailboxName = [mailboxName substringWithRange: NSMakeRange(1, [mailboxName length] -2)];
112 mailboxName, @"mailboxPath",
H A DUIxMailAccountActions.m120 NSString *accountName, *mailboxName, *messageName;
177 mailboxName = [drafts absoluteImap4Name]; // Ex: /INBOX/Drafts/
178 mailboxName = [mailboxName substringWithRange: NSMakeRange(1, [mailboxName length] -2)];
182 mailboxName, @"mailboxPath",
/dports/deskutils/egroupware/egroupware/api/src/Mail/
H A DImap.php1241 * @param string $mailboxName
1244 function getStorageQuotaRoot($mailboxName) argument
1246 $storageQuota = $this->getQuotaRoot($mailboxName);
1267 $mailboxName = $this->getUserMailboxString($_username);
1268 $storageQuota = $this->getQuotaRoot($mailboxName);
1271 … (is_array($storageQuota) && isset($storageQuota[$mailboxName]) && is_array($storageQuota[$mailbox…
1272 … isset($storageQuota[$mailboxName]['storage']) && is_array($storageQuota[$mailboxName]['storage']))
1282 return $storageQuota[$mailboxName]['storage'];
1284 …return isset($storageQuota[$mailboxName]['storage'][$_what]) ? (int)$storageQuota[$mailboxName]['s…
/dports/mail/thunderbird/thunderbird-91.8.0/comm/mailnews/import/src/
H A DnsAppleMailImport.cpp469 nsAutoString mailboxName; in ImportMailbox() local
470 aMailbox->GetDisplayName(getter_Copies(mailboxName)); in ImportMailbox()
475 ReportStatus(u"ApplemailImportMailboxConverterror", mailboxName, errorLog); in ImportMailbox()
501 ReportStatus(u"ApplemailImportMailboxSuccess", mailboxName, successLog); in ImportMailbox()
511 ReportStatus(u"ApplemailImportMailboxConvertError", mailboxName, in ImportMailbox()
521 ReportStatus(u"ApplemailImportMailboxConverterror", mailboxName, in ImportMailbox()
573 ReportStatus(u"ApplemailImportMailboxSuccess", mailboxName, successLog); in ImportMailbox()
/dports/mail/archiveopteryx/archiveopteryx-3.2.0/imap/handlers/
H A Dsubscribe.cpp81 n = mailboxName(); in parse()
91 UString c = imap()->user()->mailboxName( n ); in execute()
/dports/mail/archiveopteryx-devel/aox-96ab17e/imap/handlers/
H A Dsubscribe.cpp81 n = mailboxName(); in parse()
91 UString c = imap()->user()->mailboxName( n ); in execute()
/dports/devel/sope/SOPE/sope-mime/NGImap4/
H A DNGImap4Message+BodyStructure.h131 NSString *personalName, *mailboxName, *hostName; in _buildMessage() local
139 mailboxName = [addr objectForKey:@"mailboxName"]; in _buildMessage()
146 [str appendString:mailboxName]; in _buildMessage()
152 [str appendString:mailboxName]; in _buildMessage()
/dports/devel/sope2/SOPE/sope-mime/NGImap4/
H A DNGImap4Message+BodyStructure.h131 NSString *personalName, *mailboxName, *hostName; in _buildMessage() local
139 mailboxName = [addr objectForKey:@"mailboxName"]; in _buildMessage()
146 [str appendString:mailboxName]; in _buildMessage()
152 [str appendString:mailboxName]; in _buildMessage()

123456