I#848 - Allow to save forwarded mails in the original message folder

Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/848
This commit is contained in:
Milan Crha
2023-07-26 17:16:42 +02:00
parent 0ce8cc9cdb
commit b4a8daedc2
2 changed files with 1 additions and 4 deletions

View File

@ -1038,9 +1038,6 @@ mail_session_ref_origin_folder (EMailSession *session,
if (header_value == NULL)
return NULL;
if (strstr (header_value, "FORWARDED") != NULL)
return NULL;
/* Check that a "X-Evolution-Source-Message" header is present. */
header_name = "X-Evolution-Source-Message";

View File

@ -741,7 +741,7 @@ mail_config_defaults_page_constructed (GObject *object)
G_BINDING_BIDIRECTIONAL |
G_BINDING_SYNC_CREATE);
widget = gtk_check_button_new_with_mnemonic (_("S_ave replies in the folder of the message being replied to"));
widget = gtk_check_button_new_with_mnemonic (_("S_ave replies and forwards in the folder of the original message"));
g_object_set (widget, "xalign", 0.0, NULL);
gtk_widget_set_halign (widget, GTK_ALIGN_START);
gtk_grid_attach (GTK_GRID (container), widget, 0, 4, 2, 1);