we are using encrypted O365 mailboxes due to GDRP requirements. For this case, we use a product named "Eperi Gateway" (https://eperi.com/eperi-gateway/for-microsoft-365/) .
Currently, Veeam directly connects as usual to O365 and takes the mailboxes it gets. The mailboxes are then stored in encrypted state.
Is it possible to let veeam use Gateway as proxy so the gateway will work as forward proxy, so the mailboxes veeam gets are stored in unencrypted state (like give veeam the Proxy Pac).
For outlook clients, we use proxy.pac/wpad.dat :
Code: Select all
function FindProxyForURL(url, host) {
var proxyServer = "GATEWAY:4711";
var tenant = "TENANT";
var useMail = true;
var useOneDrive = true;
var useSharePoint = true;
var useSubstrate = true;
//Only change below if you know what you are doing.
//Mail
var outlook365 = "outlook.office365.com";
var outlook = "outlook.office.com";
var attachments = "attachments.office.net";
var mail = useMail && (dnsDomainIs(host, outlook365)
|| dnsDomainIs(host, outlook)
|| dnsDomainIs(host, attachments));
//OneDrive
var oneDriveHost = tenant + "-my.sharepoint.com";
var oneDrive = useOneDrive && dnsDomainIs(host, oneDriveHost);
//SharePoint
var sharePointHost = tenant + ".sharepoint.com";
var sharePointSpHomeP = "*-sphomep.svc.ms";
var sharePointMediaP = "*-mediap.svc.ms";
var sharePoint = useSharePoint && (dnsDomainIs(host, sharePointHost)
|| shExpMatch(host, sharePointSpHomeP)
|| shExpMatch(host, sharePointMediaP));
//Substrate
var substrateHost = "substrate.office.com";
var substrate = useSubstrate && dnsDomainIs(host, substrateHost);
if (mail || oneDrive || sharePoint || substrate) {
return "PROXY " + proxyServer;
}
return "DIRECT";
}
Anyone else facing the same challenges ?