Home
last modified time | relevance | path

Searched refs:imapServer (Results 1 – 25 of 49) sorted by relevance

12

/dports/deskutils/kdepim-runtime/kdepim-runtime-21.12.3/resources/imap/
H A Dsetupserver.cpp140 new KPIM::LineEditCatchReturnKey(m_ui->imapServer, this); in SetupServer()
166 m_ui->imapServer->setValidator(&mValidator); in SetupServer()
179 connect(m_ui->imapServer, &QLineEdit::textChanged, this, &SetupServer::slotComplete); in SetupServer()
250 …_parentResource->settings()->imapServer().isEmpty() && m_ui->imapServer->text() != m_parentResourc… in applySettings()
273 …(m_parentResource->settings()->imapServer() != m_ui->imapServer->text()) || (m_parentResource->set… in applySettings()
277 && m_ui->imapServer->text().contains(QLatin1String("gmail.com"))) { in applySettings()
286 m_parentResource->settings()->setImapServer(m_ui->imapServer->text()); in applySettings()
377 …m_ui->imapServer->setText(!m_parentResource->settings()->imapServer().isEmpty() ? m_parentResource… in readSettings()
493 qCDebug(IMAPRESOURCE_LOG) << m_ui->imapServer->text(); in slotTest()
508 const QString server = m_ui->imapServer->text(); in slotTest()
[all …]
H A Dsettings.cpp224 account->setServer(imapServer()); in loadAccount()
272 …return QStringLiteral("imap://") + userName() + QLatin1Char('@') + imapServer() + QLatin1Char('/'); in rootRemoteId()
/dports/deskutils/egroupware/egroupware/mail/inc/
H A Dclass.mail_sieve.inc.php319 $ret = $this->account->imapServer()->setRules($this->rules);
320 if (!$ret && !empty($this->account->imapServer()->error))
409 $emailNotification = $this->account->imapServer()->getEmailNotification();
434 $icServer = $this->account->imapServer($accountID);
439 $icServer = $this->account->imapServer();
797 $icServer = $account->imapServer($_vacation['account_id']);
1173 if (!$this->account->imapServer()->setRules($this->rules))
1175 return $this->account->imapServer()->error;
1189 $this->account->imapServer()->retrieveRules();
1190 $this->rules = $this->account->imapServer()->getRules();
[all …]
H A Dclass.mail_tree.inc.php498 'sieve' => $accObj->imapServer()->acc_sieve_enabled,
499 …'spamfolder'=> $accObj->imapServer()->acc_folder_junk&&(strtolower($accObj->imapServer()->acc_fold…
500 …'archivefolder'=> $accObj->imapServer()->acc_folder_archive&&(strtolower($accObj->imapServer()->ac…
H A Dclass.mail_acl.inc.php133 $this->imap = $account->imapServer(isset($account_id) ? (int)$account_id : false);
314 $imap = $account->imapServer(!empty($_GET['account_id']) ? (int)$_GET['account_id'] : false);
/dports/mail/aerc/aerc-0.4.0/widgets/
H A Daccount-wizard.go58 imapServer *ui.TextInput member
86 imapServer: ui.NewTextInput("").Prompt("> "),
102 wizard.imapServer.Set(server)
108 wizard.imapServer.OnChange(func(_ *ui.TextInput) {
109 imapServerURI := wizard.imapServer.String()
186 wizard.imapServer.Set(hostport)
249 incoming.AddChild(wizard.imapServer).
459 if wizard.imapServer.String() == "" {
460 wizard.errorFor(wizard.imapServer,
464 if wizard.imapServer.String() == "" {
[all …]
/dports/net/libksieve/libksieve-21.12.3/src/ksieveui/util/autotests/
H A Dfindaccountinfojobtest.cpp66 data1.imapServer = QStringLiteral("foo.bla.com"); in shouldAssignValue_data()
106 data1.imapServer = QStringLiteral("foo.bla.com"); in shouldAssignValue_data()
145 data1.imapServer = QStringLiteral("foo.bla.com"); in shouldAssignValue_data()
185 data1.imapServer = QStringLiteral("foo.bla.com"); in shouldAssignValue_data()
225 data1.imapServer = QStringLiteral("foo.bla.com"); in shouldAssignValue_data()
257 data1.imapServer = QStringLiteral("foo.bla.com"); in shouldAssignValue_data()
298 data1.imapServer = QStringLiteral("foo.bla.com"); in shouldAssignValue_data()
340 data1.imapServer = QStringLiteral("foo.bla.com"); in shouldAssignValue_data()
382 data1.imapServer = QStringLiteral("foo.bla.com"); in shouldAssignValue_data()
424 data1.imapServer = QStringLiteral("foo.bla.com"); in shouldAssignValue_data()
[all …]
H A Dakonadiimapsettinginterfacetest.cpp29 QString AkonadiImapSettingInterfaceTest::imapServer() const in imapServer() function in AkonadiImapSettingInterfaceTest
31 return mData.imapServer; in imapServer()
H A Dakonadiimapsettinginterfacetest.h14 QString imapServer; member
37 Q_REQUIRED_RESULT QString imapServer() const override;
/dports/mail/thunderbird/thunderbird-91.8.0/comm/mailnews/base/src/
H A DnsMsgFolderNotificationService.cpp100 nsCOMPtr<nsIImapIncomingServer> imapServer; in NotifyMsgsMoveCopyCompleted() local
101 imapFolder->GetImapIncomingServer(getter_AddRefs(imapServer)); in NotifyMsgsMoveCopyCompleted()
102 if (imapServer) { in NotifyMsgsMoveCopyCompleted()
104 imapServer->GetDeleteModel(&deleteModel); in NotifyMsgsMoveCopyCompleted()
/dports/net/libksieve/libksieve-21.12.3/src/ksieveui/util/
H A Dakonadiimapsettinginterface.cpp32 QString AkonadiImapSettingInterface::imapServer() const in imapServer() function in AkonadiImapSettingInterface
34 QDBusReply<QString> reply = mInterface->imapServer(); in imapServer()
H A Dabstractakonadiimapsettinginterface.cpp29 QString AbstractAkonadiImapSettingInterface::imapServer() const in imapServer() function in AbstractAkonadiImapSettingInterface
H A Dabstractakonadiimapsettinginterface.h20 Q_REQUIRED_RESULT virtual QString imapServer() const;
H A Dakonadiimapsettinginterface.h22 Q_REQUIRED_RESULT QString imapServer() const override;
/dports/deskutils/egroupware/egroupware/api/src/Mail/
H A DAccount.php181 protected $imapServer; variable in EGroupware\\Api\\Mail\\Account
274 unset($this->imapServer);
317 $this->imapServer($this->user) && is_a($this->imapServer, __NAMESPACE__.'\\Imap') &&
318 ($data = $this->imapServer->getUserData($GLOBALS['egw']->accounts->id2name($this->user))))
321 …if (isset($this->params['quotaLimit']) && is_a($this->imapServer, __NAMESPACE__.'\\Imap\\Dovecot'))
372 public function imapServer($_adminConnection=false, $_timeout=null) function in EGroupware\\Api\\Mail\\Account
374 if (!isset($this->imapServer) || $this->imapServer->isAdminConnection !== $_adminConnection)
382 $this->imapServer = new $class($this->params, $_adminConnection, $_timeout);
388 $this->imapServer->runOnLogin($func, $this->on_login);
392 return $this->imapServer;
H A DHooks.php97 $account->acc_imap_admin_password && ($imap = $account->imapServer(true)) &&
/dports/mail/thunderbird/thunderbird-91.8.0/comm/mailnews/imap/src/
H A DnsImapMailFolder.cpp319 nsCOMPtr<nsIImapIncomingServer> imapServer; in AddSubfolder() local
321 if (imapServer) { in AddSubfolder()
388 nsCOMPtr<nsIImapIncomingServer> imapServer; in AddSubfolderWithPath() local
1158 if (imapServer) imapServer->GetDeleteModel(&deleteModel); in SetBoxFlags()
1366 if (imapServer) { in EmptyTrash()
1624 if (NS_SUCCEEDED(rv) && imapServer) in GetCanCreateSubfolders()
1994 if (NS_SUCCEEDED(rv) && imapServer) { in DeleteMessages()
2243 nsIImapIncomingServer* imapServer) { in ShouldCheckAllFolders() argument
3737 if (NS_SUCCEEDED(rv) && imapServer) in GetHasAdminUrl()
5387 if (imapServer) { in HeaderFetchCompleted()
[all …]
H A DnsAutoSyncManager.cpp95 nsCOMPtr<nsIImapIncomingServer> imapServer(do_QueryInterface(server, &rv)); in IsExcluded() local
97 imapServer->GetAutoSyncMaxAgeDays(&offlineMsgAgeLimit); in IsExcluded()
699 nsCOMPtr<nsIImapIncomingServer> imapServer; in AutoUpdateFolders() local
700 rv = imapFolder->GetImapIncomingServer(getter_AddRefs(imapServer)); in AutoUpdateFolders()
701 if (imapServer) { in AutoUpdateFolders()
703 rv = imapServer->GetAutoSyncOfflineStores(&autoSyncOfflineStores); in AutoUpdateFolders()
/dports/www/sogo2/SOGo-2.4.1/SoObjects/SOGo/
H A DSOGoUser.m606 NSString *fullName, *replyTo, *imapLogin, *imapServer, *cImapServer, *signature,
627 // imapServer might have the following format
637 imapServer = [[self domainDefaults] imapServer];
639 url = [NSURL URLWithString: imapServer];
641 imapServer = [cUrl host];
644 imapServer = cImapServer;
647 imapServer = [url host];
648 [mailAccount setObject: imapServer forKey: @"serverName"];
H A DSOGoDomainDefaults.h42 - (NSString *) imapServer;
/dports/www/sogo/SOGo-5.4.0/SoObjects/SOGo/
H A DSOGoUser.m650 NSString *fullName, *imapLogin, *imapServer, *cImapServer,
676 // imapServer might have the following format
686 imapServer = [[self domainDefaults] imapServer];
688 url = [NSURL URLWithString: imapServer];
690 imapServer = [cUrl host];
693 imapServer = cImapServer;
696 imapServer = [url host];
697 [mailAccount setObject: imapServer forKey: @"serverName"];
H A DSOGoDomainDefaults.h42 - (NSString *) imapServer;
/dports/www/sogo-activesync/SOGo-5.4.0/SoObjects/SOGo/
H A DSOGoUser.m650 NSString *fullName, *imapLogin, *imapServer, *cImapServer,
676 // imapServer might have the following format
686 imapServer = [[self domainDefaults] imapServer];
688 url = [NSURL URLWithString: imapServer];
690 imapServer = [cUrl host];
693 imapServer = cImapServer;
696 imapServer = [url host];
697 [mailAccount setObject: imapServer forKey: @"serverName"];
H A DSOGoDomainDefaults.h42 - (NSString *) imapServer;
/dports/mail/thunderbird/thunderbird-91.8.0/comm/mailnews/import/src/
H A DnsWMSettings.cpp222 nsCOMPtr<nsIImapIncomingServer> imapServer = do_QueryInterface(in); in DoIMAPServer() local
223 if (!imapServer) { in DoIMAPServer()
230 imapServer->SetServerDirectory(NS_ConvertUTF16toUTF8(value)); in DoIMAPServer()

12