>Форум Mozilla Россия http://forum.mozilla-russia.org/index.php >Thunderbird http://forum.mozilla-russia.org/viewforum.php?id=7 >Режим "только чтение" при открытии вложений. http://forum.mozilla-russia.org/viewtopic.php?id=77516 |
Denis-NN > 09-03-2022 19:43:19 |
Добрый день. есть старая особенность работы клиента: Thunderbird открывает вложения только для чтения. |
Karabuzzz > 28-04-2023 07:56:19 |
Коллеги, до сих пор нет решения? |
Awako > 02-05-2023 11:52:21 |
Судя по коду, настройка не удалялась, но добавились новые параметры. Выделить код Код:// Always schedule files to be deleted at the end of the private browsing // mode, regardless of the value of the pref. if (this.source.isPrivate) { gExternalAppLauncher.deleteTemporaryPrivateFileWhenPossible( new FileUtils.File(this.target.path) ); } else if ( Services.prefs.getBoolPref("browser.helperApps.deleteTempFileOnExit") && Services.prefs.getBoolPref( "browser.download.start_downloads_in_tmp_dir", false ) ) { gExternalAppLauncher.deleteTemporaryFileOnExit( new FileUtils.File(this.target.path) ); } Выделить код Код:// The file with the partially downloaded data has restrictive permissions // that don't allow other users on the system to access it. Now that the // download is completed, we need to adjust permissions based on whether // this is a permanently downloaded file or a temporary download to be // opened read-only with an external application. try { // The following logic to determine whether this is a temporary download // is due to the fact that "deleteTempFileOnExit" is false on Mac, where // downloads to be opened with external applications are preserved in // the "Downloads" folder like normal downloads. let isTemporaryDownload = aDownload.launchWhenSucceeded && (aDownload.source.isPrivate || (Services.prefs.getBoolPref( "browser.helperApps.deleteTempFileOnExit" ) && !Services.prefs.getBoolPref( "browser.download.improvements_to_download_panel" ))); |
Karabuzzz > 03-05-2023 06:31:42 |
Странно всё это, в ворде в центре безопасности все нужное выключено, настройками этими двумя поиграл во всех вариантах - не помогает. |
Awako > 03-05-2023 18:03:13 |
Судя по коду, чтобы было как раньше Вы так пробовали? Хотя, последняя настройка не должна влиять |
Karabuzzz > 04-05-2023 06:04:29 |
Спасибо, третий параметр проглядел, но нет - всё равно "только для чтения". Ну и ладно, я ключевое нашел - Word выставил галку "Файл - параметры - Общее - Открывать вложения электронной почты и другие (!) нередактируемые файлы в режиме чтения". Сейчас хоть вид документов нормальный. |