auto-activate the picture download in public folders
-
Hello!
our client moves mails in the public folders.
the users do not have the right to change or delete in public folders.
so - we have a little problem:
the pictures are not shown because of the privacy bar - but the can not be downloaded within the
missing rights.is there a possibility to set an auto-download or deactivate privacy in the public folders??
can this be set somwhere??Versions are the latest.
thanks!
Jochen
-
@JonnyCashCo you can’t ‘deactivate privacy’, but it would be possible to add a domain to the whitelist - this would of course only work if the mails are coming from the same domain…
-
@bhuisman
hy!
how can i do this as admin?
is there a possibility to autoadd the domains from the added mails to the whitelist?Regards
Jochen -
The ‘whitelist’ or ‘safe sender list’ is a user setting, not a setting per folder.
There is an unresolved ticket to white list domains: https://jira.kopano.io/browse/KW-912
But you might want to do a request for the new webapp_admin to modify the setting.
https://forum.kopano.io/topic/2301/request-for-feedback-webapp-adminMaybe also interesting for you to track:
There is an external plugin, not maintained by Kopano that lets a user delete (not add) whitelisted domains:
https://github.com/gitsnuit/safesenderssettings -
@marty - thanks
-
I’ve made a pull request to add a user or domain to webapp_admin CLI.
If you can’t wait you can always modify the setting while being logged into the user via the JS console:
var current = container.getSettingsModel().get('zarafa/v1/contexts/mail/safe_senders_list', true)
current.push("newuser@newdomain.com")
container.getSettingsModel().set('zarafa/v1/contexts/mail/safe_senders_list', current)
Then click the message again and the images should be downloaded automatically