exchange-server

Graph API calls to OnPremise Exchange only works in Playground

荒凉一梦 提交于 2020-12-05 11:34:09
问题 Our setup is an on-premise Exchange Server which is accessible over the graph api. https://docs.microsoft.com/en-us/graph/hybrid-rest-support We run in the issue, that our token is only "partial" working. And a token created by "Graph-Playground" is fully working. But we can't find any difference. When I use Graph-Playground or use the token generated by Graph-Playground => all requests are working When I create a token (over my app registration) => only some requests are working The token

How Can I Specify Credentials for Simple Authentication in SSIS SMTP Connection Manager?

这一生的挚爱 提交于 2020-07-06 11:53:17
问题 We have several asp.net web apps that send emails, and the MailMessage object is configured with an SMTP server, username and password. The emails are sent with no problems. In an SSIS package, I added an SMTP connection manager, and I configured the smtp server. I set UseWindowsAuthentication=True because I don't see where I type in username/password. When I run the package from SQL Server Agent , the SSIS sends the email correctly, so apparently, the user/password is not needed. So how can

How Can I Specify Credentials for Simple Authentication in SSIS SMTP Connection Manager?

百般思念 提交于 2020-07-06 11:52:58
问题 We have several asp.net web apps that send emails, and the MailMessage object is configured with an SMTP server, username and password. The emails are sent with no problems. In an SSIS package, I added an SMTP connection manager, and I configured the smtp server. I set UseWindowsAuthentication=True because I don't see where I type in username/password. When I run the package from SQL Server Agent , the SSIS sends the email correctly, so apparently, the user/password is not needed. So how can

New-ExoPSSession error when using Connect-ExchangeOnline command in PowerShell

生来就可爱ヽ(ⅴ<●) 提交于 2020-06-29 05:05:49
问题 I ma trying to connect to Powershell using the Connect-ExchangeOnline command but I am getting the folloing error. Any ideas? New-ExoPSSession : . At C:\Program Files\WindowsPowerShell\Modules\ExchangeOnlineManagement\1.0.1\ExchangeOnlineManagement.psm1:445 char:30 + ... PSSession = New-ExoPSSession -ExchangeEnvironmentName $ExchangeEnviro ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [New-ExoPSSession], Exception + FullyQualifiedErrorId :

exchangelib - All steps in the autodiscover protocol failed

泪湿孤枕 提交于 2020-06-27 07:21:19
问题 I have a problem with using exchangelib in python. I try this example code: from exchangelib import DELEGATE, Account, Credentials creds = Credentials( username='xxxx\\username', password="mypassword" ) account = Account( primary_smtp_address='surname.name@xxxx.fr', credentials=creds, autodiscover=True, access_type=DELEGATE ) # Print first 10 inbox messages in reverse order for item in account.inbox.all().order_by('-datetime_received')[:10]: print(item.subject, item.body, item.attachments) I