aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-session.c
diff options
context:
space:
mode:
Diffstat (limited to 'mail/mail-session.c')
-rw-r--r--mail/mail-session.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/mail/mail-session.c b/mail/mail-session.c
index 16e7fc6d1b..8da4d0e415 100644
--- a/mail/mail-session.c
+++ b/mail/mail-session.c
@@ -279,9 +279,10 @@ request_password (struct _pass_msg *m)
}
if (m->service_url == NULL || m->service != NULL) {
- m->check = gtk_check_button_new_with_mnemonic (m->service_url? _("_Remember this password") :
+ m->check = gtk_check_button_new_with_mnemonic (m->service_url ? _("_Remember this password") :
_("_Remember this password for the remainder of this session"));
- gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (m->check), m->config_service->save_passwd);
+ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (m->check),
+ m->config_service ? m->config_service->save_passwd : FALSE);
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (password_dialog)->vbox), m->check, TRUE, FALSE, 0);
gtk_widget_show (m->check);
}
1:20:10 +0800'>2002-05-232-299/+336 * No more @default_type arg to e_shell_folder_selection_dialog_new().Ettore Perazzoli2002-05-239-40/+64 * Removed references to camel-remote-store.cJeffrey Stedfast2002-05-232-1/+4 * remove a #include "camel-remote-store.h"Jeffrey Stedfast2002-05-231-1/+0 * Put the stuff in /menu/Searchplaceholder/Search instead of /menu/Search.Ettore Perazzoli2002-05-231-3/+11 * Put the search menu in a SearchPlaceholder.Ettore Perazzoli2002-05-233-3/+9 * New, overrides GtkWidget::draw. (impl_expose_event): New, overridesEttore Perazzoli2002-05-232-2/+108 * New callback for when the first created view in the shell gets mapped.Ettore Perazzoli2002-05-234-0/+121 * New member default_menu_item in EShellUserCreatableItemsHandlerPrivate.Ettore Perazzoli2002-05-232-5/+45 * Removed from the build. Glory glory hallelujah.Jeffrey Stedfast2002-05-2310-892/+489 * Only refuse quitting if the result is CANCEL. This way we allow quittingEttore Perazzoli2002-05-233-1/+14 * Only clear the text/html signature menus if they are non-NULL.Jeffrey Stedfast2002-05-221-0/+4 * Only clear the text/html signature menus if they are non-NULL.Jeffrey Stedfast2002-05-222-2/+9 * Use a new macro, STR_EQUAL, to tell if the 2 values are equal or notJeffrey Stedfast2002-05-222-1/+9 * Don't call some retarded function to simply set an exception.Jeffrey Stedfast2002-05-224-4/+11 * Fix typo in the ChangeLog.Ettore Perazzoli2002-05-221-1/+1 * Don't try to invoke e_book_get_uri() on NULL. Fixes #20069.Ettore Perazzoli2002-05-222-3/+8 * Updated Norwegian (bokmål) translation.Kjartan Maraas2002-05-223-21/+39 * Updated Hungarian translation.Andras Timar2002-05-212-1603/+1939 * Do async_open_folder in an idle callback.Christopher James Lahey2002-05-214-46/+103 * Check for path being NULL.Christopher James Lahey2002-05-212-2/+17 * Forgot the changelog entry.Not Zed2002-05-211-0/+6 * New functions to add additional search strings one at a time. Maybe itNot Zed2002-05-214-661/+896 * If we get an invalid start char, just ignore it and goto the nextNot Zed2002-05-212-2/+9 * set the parent window insensitive before popping up the dialog andChris Toshok2002-05-213-2/+45 * make sure we map status -> string correctly (add missing strings).Chris Toshok2002-05-214-2/+20 * Only get the contents of a mime part if it is marked as "inline". FixesJeffrey Stedfast2002-05-213-2/+9 * Add a toolbar item for ActionScheduleMeeting.Ettore Perazzoli2002-05-213-1/+20 * Pass the @component_pixmaps in so we give the new "Meeting" button anEttore Perazzoli2002-05-215-4/+25 * New.Ettore Perazzoli2002-05-213-0/+5 * Prepend the advanced menu with a separator.Ettore Perazzoli2002-05-213-6/+15 * Strip underscores from the menu item labels.Ettore Perazzoli2002-05-213-6/+43 * Updated this. Updated Norwegian (bokmål) translation.Kjartan Maraas2002-05-213-21/+116 * Fixed the "Overdue:" string to not contain any HTML tags.Jeffrey Stedfast2002-05-213-9/+16 * Updated Norwegian (bokmål) translation.Kjartan Maraas2002-05-213-1670/+1801 * Skip the folder if it doesn't have the can_sync_offline property set.Ettore Perazzoli2002-05-212-0/+10 * Set the can_sync_offline property on the EFolder based on theEttore Perazzoli2002-05-2112-421/+166 * Remove exception. (cancelSyncFolder): Remove exception.Ettore Perazzoli2002-05-216-36/+102 * Pass NULL for @has_checkbox_func and @has_checkbox_func_data.Ettore Perazzoli2002-05-216-15/+76 * ported changes from evolution-1-0 to make it work with reminders on remoteRodrigo Moya2002-05-213-9/+66 * Make the new button work again, add some spacing.Iain Holmes2002-05-213-6/+60 * Don't show the headers in the folder table.Ettore Perazzoli2002-05-203-1/+9 * Always unref the composer [even when we are destroying it], otherwise weEttore Perazzoli2002-05-202-1/+7 * check the string returned by gnome_vfs_uri_to_string, which can be empty.Rodrigo Moya2002-05-202-0/+10 * set the view to the current viewJP Rosevear2002-05-172-0/+7 * Check for a label tag when doing a lookup on the COLOR column.Jeffrey Stedfast2002-05-176-45/+137 * New e-sexp callback function to get a user_tag label value.Jeffrey Stedfast2002-05-172-0/+18 * Added a label definition.Jeffrey Stedfast2002-05-1712-7/+445 * added folder-info.h to the buildJeffrey Stedfast2002-05-171-0/+1 * New, quit handler for the EvolutionShellComponent. (add_creatable_item):Ettore Perazzoli2002-05-177-20/+133 * added support for CAL_CLIENT_OPEN_PERMISSION_DENIED error code.Rodrigo Moya2002-05-177-1/+72 * added PermissionDenied exception and make it be raised in open,Rodrigo Moya2002-05-1717-116/+249 * Ask e_shell_prepare_for_quit() before destroying the view if it's the lastEttore Perazzoli2002-05-163-3/+27 * New. (create_component): Pass it as the @request_quit_fn toEttore Perazzoli2002-05-167-45/+108 * New function to parse a NAMESPACE response properly.Jeffrey Stedfast2002-05-165-32/+291 * Just use g_basename.Jeffrey Stedfast2002-05-162-5/+6 * Check with e_shell_prepare_for_quit() before quitting.Ettore Perazzoli2002-05-1619-25/+254 * Only reconnect if we are already connected, if we are in a disconnectedJeffrey Stedfast2002-05-162-1/+6 * If the part_spec is an empty string for a leaft part, use "1" since weJeffrey Stedfast2002-05-162-3/+7 * Add some comments to document the interface.Ettore Perazzoli2002-05-161-13/+45 * Fix quoting for AC_MSG_*JP Rosevear2002-05-162-8/+12 * Remove debugging spewIain Holmes2002-05-152-1/+5 * Committing Peter Williams patch so listeners are notified about new storages.Iain Holmes2002-05-152-1/+18 * Implement prep_offline for an individual folder. (set_offline_do): OnlyNot Zed2002-05-154-55/+234 * updated Vietnamese filePablo Saratxaga2002-05-151-317/+333 * removed. (imap_store_refresh_folders): Copy the folders first, thenNot Zed2002-05-153-10/+47 * Instead of g_assert()ing that the msg_info is not NULL, if it is NULL justJeffrey Stedfast2002-05-152-1/+9 * fixed a simple logic mistakeJeffrey Stedfast2002-05-151-1/+4 * added a missing header fileJeffrey Stedfast2002-05-152-0/+46 * Fixes bug #24136.Jeffrey Stedfast2002-05-155-37/+137 * Call e_shell_offline_sync_all_folders() if no connection is reported here.Ettore Perazzoli2002-05-156-14/+527 * Added check-empty.xpm, check-filled.xpm, and check-missing.xpm.Christopher James Lahey2002-05-157-31/+133 * Previous fix reverted.Jeffrey Stedfast2002-05-152-8/+1 * Previous fix reverted. (get_content): Handle the case where a multipart'sJeffrey Stedfast2002-05-153-6/+17 * Added #include "folder-info.h".Christopher James Lahey2002-05-1511-22/+35 * Use the uri stored in the ESummaryMailFolder object here.Christopher James Lahey2002-05-152-34/+21 * set the working hours for the meeting time selectorJP Rosevear2002-05-152-0/+11 * make the range datetime member a struct not a pointerJP Rosevear2002-05-155-9/+22 * Document "evolution default:mail"Dan Winship2002-05-152-2/+10 * Compute the evolutionUri here and pass it in.Christopher James Lahey2002-05-152-1/+38 * Made it so that if the current_id doesn't match any of the given ids, itChristopher James Lahey2002-05-142-4/+20 * Add a missing CORBA_free in the case in which the typecode of theEttore Perazzoli2002-05-142-0/+9 * Pass self to e_shell_offline_handler_new() instead of the componentEttore Perazzoli2002-05-144-32/+41 * Changed this to just walk the hash table to get the list of checkedChristopher James Lahey2002-05-142-20/+18 * Handle the e-shell-config-offline and e-shell-config-default-foldersEttore Perazzoli2002-05-149-193/+533 * Added a signal when the value of the checkboxes changes.Christopher James Lahey2002-05-143-0/+17 * Removed an incorrect comment here.Christopher James Lahey2002-05-142-2/+5 * Added search="string" where appropriate.Christopher James Lahey2002-05-142-3/+7 * Replaced q binding with ` for hiding/showing the message view pane.Christopher James Lahey2002-05-143-11/+34 * Overload the setv/getv CamelObject virtual methods. (imap_setv):Jeffrey Stedfast2002-05-143-2/+133 * Updated French translation.Christophe Merlet2002-05-142-1682/+1900 * Changed a lot of direct uses in this file of node->is_expanded to call theChristopher James Lahey2002-05-141-70/+76 * Enable the dropdown widgets even if the contact is not editable so thatChristopher James Lahey2002-05-142-1/+8 * Update for camel_folder_append_message / camel_folder_transfer_messages_toDan Winship2002-05-149-35/+58 * Add a "char **appended_uid" argument, for the caller to optionally pass inDan Winship2002-05-1415-95/+257 * Since the fix for #3357 uses 'order=0' to indicate tree structure nodes,Not Zed2002-05-132-2/+11 * Fetch the BODYSTRUCTURE rather than BODY since BODY seems to be lackingJeffrey Stedfast2002-05-112-1/+5 * Might help if we called camel_transport_class_init.Jeffrey Stedfast2002-05-112-1/+6 * If grabbed_item is NULL, cancel the timeout.Christopher James Lahey2002-05-111-0/+8 * Update for the new message-browser api.Jeffrey Stedfast2002-05-114-278/+45 * updated Vietnamese filePablo Saratxaga2002-05-112-13223/+11453 * Added SimpleCard interface.Christopher James Lahey2002-05-116-12/+455 * Don't add any shortcuts here. (mail_config_remove_account): And don'tJeffrey Stedfast2002-05-114-194/+26 * Add members `parent' and `shell' in DiscoveryData.Ettore Perazzoli2002-05-112-16/+89 * Add the Addressbook-SelectNames interface stuff.Ettore Perazzoli2002-05-111-0/+4 * Updated for FolderResult instead of DiscoverSharedFolderResult.Ettore Perazzoli2002-05-114-17/+15 * Include string.h here.Christopher James Lahey2002-05-111-0/+2 * New. New.Ettore Perazzoli2002-05-112-0/+505 * Add FileOpenOtherUsersFolder.Ettore Perazzoli2002-05-112-0/+9 * Added some tests for the custom storage.Ettore Perazzoli2002-05-1110-49/+571 * Simplify. Use transfer_messages_to instead of picking between copy andDan Winship2002-05-113-35/+12 * Replace copy_messages_to and move_messages_to with a single function thatDan Winship2002-05-1112-273/+224 * New filter function to pipe a message to another program. (run_command):Jeffrey Stedfast2002-05-102-13/+7 * Set the path in the entry widget.Jeffrey Stedfast2002-05-102-0/+4 * New filter function to pipe a message to another program.Jeffrey Stedfast2002-05-102-0/+135 * Add filter-file.[c,h] to the build.Jeffrey Stedfast2002-05-106-20/+66 * Switch from gnome_canvas_item_grab to e_canvas_item_grab.Christopher James Lahey2002-05-105-31/+149 * Make sure that even if the new source url is NULL, that we preserve theJeffrey Stedfast2002-05-102-3/+10 * Bump file version to 2. (This will make older versions of gal ignore theDan Winship2002-05-101-4/+12 * New filter widgets for choosing files and/or command-line's (?). Not yetJeffrey Stedfast2002-05-103-0/+375 * Added "first_email" property.Christopher James Lahey2002-05-102-0/+26 * Pass %FALSE as @has_shared_folders to evolution_storage_new().Ettore Perazzoli2002-05-109-22/+80 * Rename NotPrepared to notPrepared and NotSyncing to notSyncing.Ettore Perazzoli2002-05-096-11/+29 * dist Spell.idlJP Rosevear2002-05-092-0/+5 * Instead of testing for SERVICE_CONNECTED, we need to also handleNot Zed2002-05-093-2/+12 * Implemented. (digest_getv): Implemented.Jeffrey Stedfast2002-05-0912-23/+364 * implemented (c'n'p-ed and updated) spell checking settingsRadek Doulik2002-05-098-38/+378 * Revert zh_CN and zh_TW changes because gettext sucksJP Rosevear2002-05-093-27321/+9244 * Add an explanation/warning about why we want Berkeley DB 3.1.17 andEttore Perazzoli2002-05-092-0/+44 * Pretty pixmap buttonsIain Holmes2002-05-092-2/+31 * Make the mail folders work okay.Iain Holmes2002-05-082-13/+95 * Change so there's no race conditions between the folder info and the session ...Iain Holmes2002-05-083-44/+119 * link against the libtool version of libversitJP Rosevear2002-05-082-1/+6 * Update the po files to cut down on dist timeJP Rosevear2002-05-08