This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| win7:outlook [2015/11/16 16:58] – Bernard Condrau | win7:outlook [2026/09/19 18:23] (current) – removed - external edit (Unknown date) 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== Outlook ====== | ||
| - | ===== Migrate POP3 email ===== | ||
| - | |||
| - | - Move or copy .pst folder to \local\path | ||
| - | - Setup new email address from within Outlook (File -> Account Settings) and select the .pst file when setting up the email manually | ||
| - | - Do not use the \default\path (which is My Documents\Outlook Files) as \local\path, | ||
| - | |||
| - | ===== Default mail settings ===== | ||
| - | |||
| - | < | ||
| - | <table class=" | ||
| - | < | ||
| - | <td style=" | ||
| - | < | ||
| - | </ | ||
| - | <td style=" | ||
| - | <td style=" | ||
| - | <td style=" | ||
| - | </ | ||
| - | < | ||
| - | < | ||
| - | < | ||
| - | < | ||
| - | < | ||
| - | </ | ||
| - | < | ||
| - | < | ||
| - | < | ||
| - | < | ||
| - | < | ||
| - | </ | ||
| - | < | ||
| - | < | ||
| - | < | ||
| - | < | ||
| - | < | ||
| - | </ | ||
| - | < | ||
| - | < | ||
| - | < | ||
| - | < | ||
| - | < | ||
| - | </ | ||
| - | < | ||
| - | < | ||
| - | < | ||
| - | < | ||
| - | < | ||
| - | </ | ||
| - | </ | ||
| - | </ | ||
| - | [[http:// | ||
| - | ===== Yahoo mail settings ===== | ||
| - | |||
| - | Incoming Mail (POP) Server - Requires SSL | ||
| - | Server - pop.mail.yahoo.com | ||
| - | Port - 995 | ||
| - | Requires SSL - Yes | ||
| - | |||
| - | Outgoing Mail (SMTP) Server - Requires TLS | ||
| - | Server - smtp.mail.yahoo.com | ||
| - | Port - 465 or 587 | ||
| - | Requires SSL - Yes | ||
| - | Requires authentication - Yes | ||
| - | |||
| - | If your POP client doesn' | ||
| - | |||
| - | Login info - Requires authentication | ||
| - | Email address - Your full email address (name@domain.com.) | ||
| - | Password - Your account' | ||
| - | |||
| - | ===== Clean up mailbox ===== | ||
| - | |||
| - | * [[http:// | ||
| - | * [[https:// | ||
| - | * [[http:// | ||
| - | |||
| - | ===== Change Calendar sort criteria ===== | ||
| - | |||
| - | Sub FileAs() | ||
| - | |||
| - | (Outlook 2003) Dim oFolder As MAPIFolder | ||
| - | (Outlook 2007) Dim oFolder As Folder | ||
| - | Set oFolder = Session.PickFolder | ||
| - | |||
| - | If oFolder Is Nothing Then Exit Sub | ||
| - | |||
| - | For Each Item In oFolder.Items | ||
| - | Dim oContact As ContactItem | ||
| - | Set oContact = Item | ||
| - | If Not oContact Is Nothing Then | ||
| - | If oContact.FirstName = "" | ||
| - | oContact.FileAs = oContact.LastName | ||
| - | ElseIf oContact.LastName = "" | ||
| - | oContact.FileAs = oContact.FirstName | ||
| - | ElseIf oContact.LastName <> "" | ||
| - | oContact.FileAs = oContact.FirstName & ", " & oContact.LastName | ||
| - | End If | ||
| - | oContact.Save | ||
| - | Set oContact = Nothing | ||
| - | End If | ||
| - | |||
| - | Next | ||
| - | |||
| - | End Sub | ||
| - | |||
| - | ==== reset Outlook folder names to default language of the client ==== | ||
| - | |||
| - | Outlook / | ||
| - | |||
| - | ===== Start Outlook as Administrator ===== | ||
| - | |||
| - | Hold Ctrl-Shift when clicking the Outlook icon. | ||
| - | |||
| - | ===== Links ===== | ||
| - | |||
| - | [[https:// | ||