Message time still GMT in Mail list for CenturyTel users

(The two previous strands of this question from 2007 have been archived. I'm still running Tiger.) In the MacMail list of incoming messages, every message from CenturyTel, even from my husband across the room, is listed with the time as GMT , not the PDT everything else shows. So, of course, it fouls up the order of receipt of messages. While I'd like to blame CenturyTel, and have asked a tech. about it and got nowhere, the time is translated correctly if I receive messages using Thunderbird. So I think it is an error in MacMail. Long headers look fine. Any ideas? I may just move on to Leopard in hopes it is not plagued by this irritating snag. Thanks for your comments.

After updating my iMac to OS 10.5.6 the problem disappeared. 'Just a bug I've left behind in 10.4.11. So I'll call it solved.

Similar Messages

  • E52 bug list for advanced users

    I wanted to start the compilation of a bug list for advanced users. Here is my first suggestion:
    1. SMS Functionality: 
    When trying to send SMS to a distribution list, the phone interface will ask you to choose between number and email addresses, even though the phone does understand that this is a SMS and not an email ("Text Message" appering on top)
    This happens even when the contact has one phone number only (and an email address) in the phonebook
    This does not happen when you use PC Suite to do the same task
    2. Mail for Exchange client:
    I will not go through the many -most already reported- bugs and general instability of the client. However, I will mention two that I have not seen reported anywhere so far:
    When forwarding emails, only the header (From/To/Date/Subject) is forwarded. The rest of the text, as well as possible atachments are not forwarded. This is happening -to my epxerience- every time you try to forward an email
    The client doesn't provide information (like the previous, installable client for devices such as E51, E71, etc.) as to when was the last time that sync took place, while it also doesn't show a real-time progress like the previous one. These two functionalities were very useful for controlling the Mail for Exchange process and understanding proactively if there was an issue. I consider these a must for any Business user (going through the log files to understand the same thing is obviously utterly impractical)
    The client doesn't synchronise the "Deleted Items" folder from the mail server but only locally (which means it includes emails that were deleted only from the device itself).
    The synchronization of the folders other than "Inbox" should be happening ad-hoc whenever the user is accessing these folders and requesting a sunchronization. Otherwise, we see the phenomenon of extremely lengthy synchronizations
    3.  Screen/Display:
    It would be nice, when using the smallest font, to also accordingly compress the menu choices, in order to be able to fit more on the screen. Otherwise, with the present implementation, the fonts get smaller, but the relevant menu icons are not, resulting in an assymetrical look
    4. Ovi suite:
    As a general comment, I would like to mention that -apart from totally unknown NOKIA policy with regards to Ovi vis-a-vis PC Suite- it is not appropriate for Ovi to contain less functionality than PC Suite (I am referring to SMS presentation, etc.). In general, I find Ovi much clunkier and more clumsy than PC Suite which has actually evolved well over the years as the absolute PC phone tool (and still a differentiator for Nokia). So, NOKIA, please do not screw up PC Suite for something that may be "hype" accoridng to you, but is used as a tool by many of your customers.
    5. Log:
    As in previous phones/firmware versions, when setting the Log to 30 days, only 7 or ten days are actually retained. Maybe related to phone memory, but in any case it is a nuissance
    6. SMS/VMs/Missed calls notifications:
    This is not a bug, but at least personally, I preffered the way the SMS/VMs/Missed calls notifications were displayed in the previous devices (E51, etc.), just below the active stand-by applications "ribbon", instead of at the bottom of the screen. The new implementation makes it harder to access these items than before (at least for me)
    I appeal to NOKIA to consider and fix these issues in the next firmware release(s).
    Timos Tsokanis

    @Timos , great compilation. I hope Nokia will work to resolve these quickly.
    I have been using phone since last 2-3 days and find few things in Email client really annoying.
    Also I want to understand few settings in Email client (version 2.1.0). They have made settings too complicated.
    1)Any folder except Inbox doesn't show unread email count in brackets next to folder names.
    i.e. If i delete or move 2 emails which I have not read to any folder(Deleted etc) , then deleted folder should be like Deleted(2). But right now it doesnt show anything. Strange.
    I have checked with E72 and this bug is not there.
    2) I have Gmail, Hotmail and Ovi mail as part of Nokia Messaging. But only Gmail and Hotmail actually show up when I open Messaging. All 3 show up if I open Email.
    3)What does "Download Notification" under Global settings do? Notification icon control?
    4) Why my Name field in Mailbox setting is picked from account at email.nokia.com, also even though secure connection is Yes under server settings in email.nokia.com, for same email its No in email client.
    5) Why I am not allowed to change settings in "What to sync" , e.g. Hide email older than
    6) what do settings "synchronise new updates" , "timed sync" do? No explaining in help.
    7) Setting ->Gmail(or any other)->Account settings->Account Info, why number is blank? Also please make this work with destinations support. Also connectivity setting should be in global settings.
    Best Regards,
    Suyog

  • FindGroups - Error while getting group list for login user

    Hi All,
    I am using below code snippet to search a group in OIM but it gives me "Error while getting group list for login user" error message.
    tcResultSet rsetAss = null;
    tcGroupOperationsIntf groupIntf = (tcGroupOperationsIntf)utilFactory.getUtility("Thor.API.Operations.tcGroupOperationsIntf");
    HashMap mapGrp = new HashMap();
    mapGrp.put("Groups.Group Name","DEF_GROUP");
    rsetAss = groupIntf.findGroups(mapGrp);     
    And i am ruuning this code using xelsysadm logon.
    com.thortech.xl.util.config.ConfigurationClient.ComplexSetting config = ConfigurationClient.getComplexSettingByPath("Discovery.CoreServer");
    Hashtable env = config.getAllSettings();
    com.thortech.xl.crypto.tcSignatureMessage moSignature = tcCryptoUtil.sign("xelsysadm", "PrivateKey");
    utilFactory = new tcUtilityFactory(env, moSignature);     
    Any guess?
    Thanks & Regards
    Inbaa.

    Here it is Rajiv,
    public class GetUserApprover {
    private String defGroup = "DEF_GROUP";
    public tcUtilityFactory getUtilFactory()
    tcUtilityFactory utilFactory = null;
    try
         logger.debug("Initializing the utilFactory");
         com.thortech.xl.util.config.ConfigurationClient.ComplexSetting config = ConfigurationClient.getComplexSettingByPath("Discovery.CoreServer");
    Hashtable env = config.getAllSettings();
    com.thortech.xl.crypto.tcSignatureMessage moSignature = tcCryptoUtil.sign("xelsysadm", "PrivateKey");
    utilFactory = new tcUtilityFactory(env, moSignature);
    catch(Exception ex)
         logger.info("Error while getting the utilFactory" + ex.getMessage());
         System.out.println(ex.getMessage());
    return utilFactory;
    public String getGroupKey(String defGroup){
              String groupKey = null;
              tcUtilityFactory utilFactory = getUtilFactory();
              if(utilFactory != null)
         System.out.println("utilFactory not null. Searching for group:" +defGroup );
                   try
              tcResultSet rsetAss = null;
              tcGroupOperationsIntf groupIntf = (tcGroupOperationsIntf)utilFactory.getUtility("Thor.API.Operations.tcGroupOperationsIntf");
              HashMap mapGrp = new HashMap();
              mapGrp.put("Groups.Group Name","DEF_OWNER_GROUP");
              System.out.println("Finding Group....");
              rsetAss = groupIntf.findGroups(mapGrp);          
              System.out.println("RowCount-->" +rsetAss.getRowCount() );
              rsetAss.goToRow(0);
              groupKey = rsetAss.getStringValue("Groups.Key");
         System.out.println("GroupKey-->" + groupKey);
         catch(Exception e){
              System.out.println("Error" + e.getMessage());
              return (java.lang.Object)groupKey;
    }

  • Restore using Time Machine to new hard drive, but last "full" backup was 2012.  how do I restore the rest of the Time Machine backups, particularily IPHOTO libraries for each user?

    Restore using Time Machine to new hard drive, but last "full" backup was in 2012.  How do I restore the rest of the Time Machine backups, particularily IPHOTO libraries for each user? 
    I entered Iphoto for my user and only photo up until 2012 were in the library.  I thought the restore would do the incremental Time Machine backups too.....
    Running 10.8.2

    It usually means you are running Mavericks but have an earlier version of iPhoto. Open the App Store and upgrade your version of iPhoto to the Mavericks version.
    The iWork apps are free with a new iOS device since 1 SEP 2013. They are free with a new Mac since 1 OCT 2013. They are also free with the upgrade to OS X Mavericks 10.9 if you had the previous version installed when you upgraded.The iWork apps are free with a new iOS device since 1 SEP 2013. They are free with a new Mac since 1 OCT 2013. They are also free with the upgrade to OS X Mavericks 10.9 if you had the previous version installed when you upgraded.
    iWork and iLife for Mac come free with every new Mac purchase. Existing users running Mavericks can update their apps for free from the Mac App Store℠. iWork and iLife for iOS are available for free from the App Store℠ for any new device running iOS 7, and are also available as free updates for existing users. GarageBand for Mac and iOS are free for all OS X Mavericks and iOS 7 users. Additional GarageBand instruments and sounds are available for a one-time in-app purchase of $4.99 for each platform.

  • Locks list for a user session

    Hello,
    Is there a function module or class/method which will give me the list of all locks of a user in the current session and not across all sessions (like transaction SM12). Function modules like ENQUE_READ and ENQUE_READ2 provides the lock list for a user across all sessions but not in the seesion in which the FM is being executed.
    Please let me know if you have any information in this regard.
    Thanks & Regards,
    Saurabh

    Hi saurabh,
    Dont post duplicate thread . Its against the rule of engagement.
    Locks list for a user session
    If you have got the answer in the previous thraed then close this thread.
    Regards,
    Sujit

  • Individuall shopping lists for each User - SRM-MDM 3.0

    Hello everybody,
    I want to implement a SAP SRM-MDM scenario with SRM-MDM 3.0. The SRM-MDM 3.0 has the poissiblity to create shopping carts for every 'MDM User'. But that's not enough for our users.
    Is it possible to create different shopping lists for each user?
    I already use the setting: sl_user with the attribute SY-UNAME but it doesn't work
    10                                    http://...:50100/SRM-MDM/SRM_MDM     URL
    19     sl_user          SY-UNAME               SAP-Feld
    20     username          User1               Festwert
    30     password          <blank>                                        Festwert
    40     server          s27sr7               Festwert
    50     catalog          SR7_MDM3_Catalog_4_Produktiv_2     Festwert
    60     uilanguage          SY-LANGU               SAP-Feld
    70     datalanguage     SY-LANGU               SAP-Feld
    I hope anybody can help me.
    Regards,
    Andi

    @everybody: Thanks for your fast reply!
    @Girish: Yes, I think we have the same problem
    @Padhi: It is not a prictically solution to create every SAP SRM User (3.000) in the SAP SRM-MDM Catalog. In comparison to other catalog systems (e.g. heiler) this have to be a standard feature
    @Kanth: That's correct, you can activate the shopping list option for the MDM User. But the MDM User only defines the rights and masks. For the MDM it is not necessary to login with your SAP / SAP SRM Username.
    Note [1153525|https://websmp130.sap-ag.de/sap(bD1kZSZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1153525] describe the long-needed function in SRM-MDM. But it seems, that this feature only work in SRM-MDM 2.0.
    Maybe anybody know anything else about this problem... I'm thankful about every hint!
    Regards,
    Andreas

  • I installed acrobat pro on my computer, and now I am unable to download items because I get a message that I need to open acrobat for the user agreement. opening acrobat pro does not help.

    I installed acrobat pro on my computer, and now I am unable to download items because I get a message that I need to open acrobat for the user agreement. opening acrobat pro does not help. What do i do?

    I have not contacted Adobe. I am using acrobat pro CC, and haven't noticed any problem with the software itself. The only problem I have had so far is when I try to download.

  • How to delete existing e-mail signature for all users in outlook 2010

    Dears,
    How to delete existing (or reset to none ) e-mail signature for all users .
    If anyone knows where I can find this script or another way of accomplishing this I would be very thankful.
    outlook Version : 2010
    PS : Not to disable.
    Khaja Hameed

    If you want to manage signatures for multiple users your best bet is to use Group Policy.
    See:
    Setting up a Corporate Signature | HowTo-Outlook
    http://www.howto-outlook.com/howto/corporatesignatures.htm
    <p>Eric Legault (<a href="https:/mvp.support.microsoft.com/default.aspx/profile/legault">MVP: Outlook</a>)<br/> <a href="http://about.me/ericmlegault">About me...</a><br/> <a href="http://www.outlookappins.com/products/social-contacts">Outlook
    Appins</a>: Store Social Media fields in your Outlook Contacts!</p>

  • Gmail 'All mail' listed for every message in smart folders

    With the new Gmail integration, every one of my smart folder message lists show each message as being in 'All mail'.  While this is true, I'd much prefer it if it showed me any *other* folders/tags the message is part of, which is much more interesting.
    Is this the common experience?

    Hi and welcome to Apple Discussions...
    Try Skye's e-mail support here because this may be a web based mail client issue, not the iPad. Try their e-mail help center or try to contact Sky just to rule that out.
    Sky(e) Mail & Online Services
    One other suggestion is restore the iPad from a backup.
    Carolyn

  • What is the internal mailing list for Oracle SES

    Hello, I had this mailing list: : [email protected] but it appears to not be available now. Does anyone know where should I write now?
    Thanks in advance.

    Hello,
    This is list is the way for everyone to see which companies are actively contributing on SCN. The points of their employees are aggregated under the company names.
    We have a recognition program for SAP Partners called the [SAP Pinnacle Awards|http://www.sap.com/ecosystem/partners/recognitionprograms/pinnacleaward.epx]. In various categories such as Software, Technology, Services, Community etc we give an award to our partners at the Sapphire conference in May. For the Community Award, we look at companies who are active on SCN, we look at their contributions on SCN (via this list) but we also look at the quality of their contributions, their involvement in SAP and community events as well as community projects.
    So to sum up and answer your question: this list helps with partner recognition, but there's more to it.
    Best regards,
    Laure (from the SCN Collaboration Team)

  • Is there a mailing list for the OID in oracle?

    Hi All,
    Is there a mailing list in Oracle for the OID discussion?
    Thanks,
    Michelle

    Hi Michelle!
    You have posted to the right forum. Also there is an OID mailing list inside Oracle, but unless you are an Oracle employee you cannot mail to it (even not from the outside).
    cu
    Andreas

  • To create a mailing list for a specific ou

    Dear all,
    I am trying to define an emailing list for a specific ou members! using dynamic ldap search filters!
    I have already working lists for all domain, and for static lists! but not a restricted dynamic ldap :(
    i used many queries and all result with:
    Your message cannot be delivered to the following recipients:
    Recipient address: [email protected]
    Reason: no addressees: [email protected]
    The queris i used are many:
    ldap:///dc=ju,dc=edu,dc=jo??sub?(&(objectclass=inetMailUser)(ou=eman ou))
    or
    ldap:///dc=ju,dc=edu,dc=jo??sub?(&(|(objectclass=person)(objectclass=groupofuniquenames))(ou=eman ou))
    in the provisioning guide there is a paragraph that i didn't understand!
    NOTE iPlanet Messaging Server also supports dynamic lists based on the attribute memberURL from the objectclass groupofurls. Netscape
    Directory Server 4.x allows creating of dynamic groups using this attribute and messaging server can take advantage of any groups that may have already been defined using memberURL.
    version of our messaging server and we don't have delegated administrator installed yet?!!:
    iPlanet Messaging Server 5.2 HotFix 1.21 (built Sep 8 2003)
    libimta.so 5.2 HotFix 1.21 (built 18:35:22, Sep 8 2003)

    You do not need to have iDA installed to use dynamic groups. In fact, iDA does not deal with dynamic groups.
    There is a whole series of pages in the Admin guide:
    http://docs.sun.com/source/816-6009-10/users.htm#15141
    about creating dynamic groups. Let's give that a try, please.

  • Create mailing list for small business - no podcast or blog

    For a small business website.
    I need to create 2 boxes on my "mailing list" page that visitors can type in 1. their name, 2. their email address.
    So far I can't figure out how to do this so that when this page comes up you can scroll over the box and the text cursor shows up for visitors to type details.
    I understand how to add a "subscribe" button with HTML code method as used for paypal buttons, and think this would be the same for a "subscribe" button?
    If anyone could help that would be great!

    I worked it out! The whole mailing list form with boxes for name and email and "subscribe" button comes in one HTML code from your mailing list supplier! YAY!

  • Why old message are still in the mail queue

    Hi all,
    I would like to know why old messages are still in the ims-ms queue and not deliver to recipient?
    qm.maint> summ
    Messages
    Channel Queued Size (Kb) Oldest
    tcp_local 0 0.00
    tcp_intranet 0 0.00
    tcp_auth 0 0.00
    reprocess 0 0.00
    process 0 0.00
    pmxchannel 176 50912.86 4 Dec, 10:06:04
    native 0 0.00
    ims-ms      93    83309.79    3 Dec, 11:25:04
    defragment 0 0.00
    Totals 269 134222.65
    I went to message location and saw the "ZZf0M2s0h2Xp1.HELD" message in /opt/SUNWmsgsr/queue/ims-ms/000
    what does this mean "HELD" messages?
    Anyone can explain in this? thanks.

    Yap wrote:
    I would like to know why old messages are still in the ims-ms queue and not deliver to recipient? As always, what version of messaging server are you running (./imsimta version)?
    qm.maint> summ
    Messages
    Channel Queued Size (Kb) Oldest
    ims-ms      93    83309.79    3 Dec, 11:25:04
    If you run the following command, are the emails all destined to the same user?
    ./imsimta qm
    dir -env ims-msAlso have you experience a core dump/process crash recently (do you have coreadm enabled)?
    I went to message location and saw the "ZZf0M2s0h2Xp1.HELD" message in /opt/SUNWmsgsr/queue/ims-ms/000
    what does this mean "HELD" messages? Refer here:
    http://docs.sun.com/app/docs/doc/819-4428/bgbhg?a=view
    Regards,
    Shane.
    Anyone can explain in this? thanks.

  • A New Mailing List for Oracle Apps DBAs

    Hello Oracle Apps DBA community,
    A new mailing list [email protected] has been created!
    Feel free to subscribe by sending email to
    [email protected] with 'subscribe' in the Subject field
    Feel free to unsubscribe :) by sending email to
    [email protected] with 'unsubscribe' in the Subject field
    This list is dedicated purely Oracle Apps DBA job related questions.
    Let share our experience, options and problems. Together we will make our job more efficient.
    If your job is Oracle Apps DBA please WELCOME to join the list.
    I am sure you will not regret.
    More information about new list available on:
    http://www.freelists.org/archives/ora-apps-dba/05-2006/msg00000.html
    Thank you in advance,
    Yury
    5 years Oracle Apps DBA.

    I appreciate if someone comes up with an EBusiness Architecture forum, where users can share there architectures and best practices to tame the monster EBusiness

Maybe you are looking for