MS shows a different timezone for mail from Singapore

I'm in Singapore/Malaysia running Solaris 2.6 with a patch cluster installed from
http://sunsolve.sun.com. Every time I send an email, the date field has the
wrong time zone in it. That is what the last field shows:
<P>
Date: Tue, 26 Jan 1999 18:07:47 +0730
<P>
It should be showing:
Date: Tue, 26 Jan 1999 18:07:47 +0800.
<P>
/etc/default/init
has the following set in it for TZ:
<P>
TZ=Singapore
<P>
The problem is not with the system time but with the timezone in the date
section of the email. The entire Solaris system shows the right time but
whenever MS send out a mail it shows that it is 7 hours 30 mins and not
8 hours. This causes the mail client to show wrong the receiving time. Sendmail
shows the right timezone.
<P>
The problem occurs only after installing Sun's Patch cluster. The problem
is present in MS 4.0.
<P>
A sample mail received from MS 4.0 is shown below:
<P>
Subject: This is a second test
Date: Sat, 30 Jan 1999 03:31:44 +0730
From: "Super-User"
To: [email protected]
<P>
(See attachment)

Not currently posible.  http://www.apple.com/feedback/iphone.html

Similar Messages

  • HT204406 Hello,  I have songs that show they are "Waiting" for download from the cloud but they are greyed out.  Some songs in one album are done others in the same album will not download. It is not a time function because i have been working on this for

    Hello,  I have songs that show they are "Waiting" for download from the cloud but they are greyed out.  Some songs in one album are done others in the same album will not download. It is not a time function because i have been working on this for weeks. I have allowed my compter to run for days and the songs are still not accessible.  I have a Match subscription and Match is working.  If I click on the "Genre" link the greyed out songs show that they are ready for download from the cloud but I cannot download them.  I have downloaded over 1500 other songs, so I am trying to understand what is going on here. I would appreciate any help anyone can give me.
    Thanks

    I did think about that and if I have to I will do that, however there are about 50 songs. I have closed and reopened iTunes several times and I am sure that I have the latest version. It fails right away but I can click on the cloud download icon and download the song that it failed on ... therefore it is not that song "or any one song" causing the issue. Any ideas?

  • Can you have different passwords for mail account and ICloud?

    Can you have different passwords for mail account and ICloud?

    Yes - you want to go under Notifications, Mail.   Set each acct the way you want.

  • In case of Non Stock Material - Different GL for projects from WRX

    Hi Gurus,
    While doing MIGO for non stock material in case of projects, system is crediting account from WRX in OBYC with blank valuation class. but how can we give different GL for projects in this case.
    Please revert asap.
    Thank you

    >
    sapmm99 wrote:
    > For non valuated material, material  master is required or?
    >
    > As per my knowledge material master is mandatory only for stock materials. not for not valuated and non stock materials usually we never maintain master data for non stock and non valuated materials
    >
    > if i am wrong please advise me
    Its upto you if you want maintain material master record or not for non valuated material. With material master you have a material code to input in the field of PO, without material master you put in short text.

  • Content-Transfer-Encoding for mail from Portal

    Hi,
    I work on Portal 7.0 SP 12.
    Do You know how to change encoding (Content-Transfer-Encoding) for mails send from portal by users (ex. from Collaboration Launch Pad) ?
    Regards,
    Jarek

    Thank you

  • Show a different view when called from different app.

    Hi,
    I have the requirement of showing a different view in the same window when called from different apps (urls).
    I have created different start-up inbound plugs and assigned them to the different apps but I can't figure out how to code the view switch.
    Any idea?
    thanks in advance,
    David R.

    hi,
    It is possible.
    Click on the Properties tab of application.In that screen click on the seach help option against Interface view.It will show all views you have created. Select the desired view to which the application has to point.
    Don't forget to give the  plug name which is under that interface view
    Now the application invokes the new view which u have pointed.
    If you have doubts in this please inform me.
    Regards,
    Ramanan
    Edited by: Ramanan Panchabakesan on Sep 3, 2008 1:50 PM
    Edited by: Ramanan Panchabakesan on Sep 3, 2008 1:51 PM

  • Code for mailing from behing a proxy using Authentication

    Dear friends,
    I have found several requests regarding the mailing from behing a firewall/proxy with Authentication.. So here is the entire code for the same..
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    import java.util.*;
    import javax.mail.*;
    import javax.mail.event.*;
    import javax.mail.internet.*;
    public class MailClient extends Frame{
    static String mailHost="proxyAddress";
    public MailClient() {
    public static void main(String[] args) {
    Properties properties=new Properties();
    properties.put("mail.smtp.host",mailHost);
    properties.put("mail.smtp.auth","true");
    Session session=Session.getDefaultInstance(properties,new MyAuthentication());
    try{
    Message msg=new MimeMessage(session);
    InternetAddress address[]={new InternetAddress("toAddress1.domain.com")};
    msg.setRecipients(Message.RecipientType.TO,address);
    msg.setSubject("Test Mail");
    msg.setFrom(new InternetAddress("[email protected]"));
    msg.setContent("Please reply.. This is a java mail using Authentication
    technique..","text/plain");
    Transport transport=session.getTransport("smtp");
    transport.connect();
    transport.sendMessage(msg,msg.getAllRecipients());
    }catch(Exception e){e.printStackTrace();}
    Hope this helps..
    regards Stallon
    class MyAuthentication extends Authenticator{
    public PasswordAuthentication getPasswordAuthentication(){
    return new PasswordAuthentication("userName","password");
    }

    Hi stallon,
    Thanks for ur reply.Actually my application is at server2. I have an account in server1 and sending mail from server2. server1 requires authentication to send it to server3. Though we provide it is not accepting.There no errors while execution but mail couldn't be send.
    Please help me as soon as possible.
    Thanks in advance,
    bdurvasula
    //debug code.
    DEBUG: getProvider() returning
    javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun
    Microsystems, Inc]
    DEBUG SMTP: useEhlo true, useAuth true
    DEBUG: SMTPTransport trying to connect to host
    "host", port 25
    DEBUG SMTP RCVD: 220 host ESMTP
    server (Netscape Messaging Server - Version 3.6)
    ready
    Thu, 21 Jun 2001 14:23:15 +0800
    DEBUG: SMTPTransport connected to host
    "host", port: 25
    DEBUG SMTP SENT: EHLO rao
    DEBUG SMTP RCVD: 250-host
    250-HELP
    250-EXPN
    250-ETRN
    250-PIPELINING
    250-DSN
    250 AUTH=LOGIN
    DEBUG SMTP SENT: MAIL FROM:<[email protected]>
    DEBUG SMTP RCVD: 250 Sender
    <[email protected]>
    Ok
    DEBUG SMTP SENT: RCPT TO:<[email protected]>
    DEBUG SMTP RCVD: 250 Recipient
    <[email protected]> Ok
    Verified Addresses
    [email protected]
    DEBUG SMTP SENT: DATA
    DEBUG SMTP RCVD: 354 Ok Send data ending with
    <CRLF>.<CRLF>
    DEBUG SMTP SENT:
    DEBUG SMTP RCVD: 250 Message received:
    7745C8DA90B.AAA27D7
    DEBUG SMTP SENT: QUIT
    //now i am sending the mail that was sent by my server
    This Message was undeliverable due to the following
    reason:
    Your message was not delivered because the
    destination
    computer
    refused to accept it. The error message generated
    by
    the server
    is reproduced below.
    Non-local addressee. We do not relay!
    Please reply to Postmaster@mailserver .if you feel
    this message to be in error.Thanks once again
    bdurvasula

  • Creating a server rule that watches for mail from an external user

    We need to create a rule that will watch for incoming mail from an external domain and then forward that mail to an internal distribution list. I don't want it to be tied to an Outlook user. Is this possible? I can't seem to find a way to do this. 
    Orange County District Attorney

    Hello,
    Please make sure your exchange version.
    If you use exchange 2007/2010, there is no this transport rule to realize it. But you can create a transport rule( from users inside or outside the organization; copy the message to addresses) to copy incoming mail from an external domain to your distribution
    list.
    If you have any feedback on our support, please click
    here
    Cara Chen
    TechNet Community Support

  • Define Alert for mail from specific sender on E5-0...

    Hi All
    I'm supposed to receive pager on my E5-00 overnight so I wanted to define a alert (ringtone) when a mail from a specific user is received is that possible?
    Regards 

    You would have to set up a server-side filter which moves everything which isn't from this sender to another folder which you'd have to look at in the morning, enable it every night and disable it every morning.

  • JES5: outlook shows 'fake' attachment icon for mails originating from uwc/e

    Hi,
    Strange thing:
    We are using JES5 with both UWC and outlook connector.
    Mails sent from UWC in Internet explorer (dutch version) display a 'file attachment' icon in outlook 2003 (in the header pane). In the message pane, there's no file attachment.
    Mails sent from UWC in Mozilla (dutch version) display fine in outlook 2003 (that is: no sign of a file attachment icon).
    Upon further inspection, I noticed that Internet explorer generates this type of mime header (notice the multipart/mixed)
    X-Mailer: Sun Java(tm) System Messenger Express 6.3-4.01 (built Aug 32007;
    32bit)
    MIME-version: 1.0
    Content-language: nl
    Subject: test tekst
    X-Accept-Language: nl
    Priority: normal
    Content-type: multipart/mixed; boundary=--30a08e3d58b82ed92965
    X-ESAFE-STATUS: Mail clean
    X-ESAFE-DETAILS:
    This is a multi-part message in MIME format.
    ----30a08e3d58b82ed92965
    Content-Type: text/plain;
         charset=us-ascii
    Content-Disposition: inline
    Content-Transfer-Encoding: 7bit
    testtekst
    ----30a08e3d58b82ed92965--
    Mozilla generates this type of mime header (ntocie the multipart/alternative)
    X-Mailer: Sun Java(tm) System Messenger Express 6.3-4.01 (built Aug 32007;
    32bit)
    MIME-version: 1.0
    Content-language: nl
    Subject: test vanuit nl - uwc - html
    X-Accept-Language: nl
    Priority: normal
    Content-type: multipart/alternative; boundary=--3091e7cf67b73e73237c
    X-ESAFE-STATUS: Mail clean
    X-ESAFE-DETAILS:
    This is a multi-part message in MIME format.
    ----3091e7cf67b73e73237c
    Content-Type: text/plain;
         charset=us-ascii
    Content-Disposition: inline
    Content-Transfer-Encoding: 7bit
    test test
    ----3091e7cf67b73e73237c
    Content-Type: text/html;
         charset=us-ascii
    Content-Disposition: inline
    Content-Transfer-Encoding: 7bit
    test test
    ----3091e7cf67b73e73237c--
    This (cosmetic) problem is unrelated to choosing 'pure text' or 'html text' in the UWC message creation window.
    I don't know where to look for solving this bug:
    - is it outlook that is unable to correctly parse the 'multipart/mixed' type of mail ?
    - or should internet explorer generate multipart/alternative style mails ?
    any ideas ?
    gr,
    Tom.

    That's not someting I've seen. I suggest a support case.

  • Some emails are there when searching, but do not show up in inbox for mail account. How do we permanently fix that? This is dangerous for businesses that rely

    Hi, and thanks,
    I noticed that many dozens of others have expressed the same problem with Thunderbird, but it still continues.
    For no apparent reason, sporadically, some emails don't show up in the inbox list of an account, but are actually there. If we're told later that someone sent one, and if we do a search at that time, it does come up!
    We rely on this for business, and wouldn't know to search if we are unaware that an email has come in but simply doesn't appear in the list. We have actually lost significant business $ on 3 separate occasions, from clients who have said they emailed us, but we never responded! (That's really bad, and even worse because they also won't use us any more.)
    Obviously, we of course would not want to have to check with the webmail host when we have Thunderbird. So...., how can we permanently fix this problem so it never, ever occurs??? We used to use Eudora before switching, and this never happened.
    Some blogs say to delete one of the files in the system to re-index the inboxes, but again, that would not be the answer, because we wouldn't know to do that, nor when to do that, since some emails, without a warning or clue, occasionally simply don't show up in the list at all.
    Please let us know the permanent and complete fix for this ASAP.
    Thanks so much,
    Les Pock

    Lers, I have used Thunderbird for the best part of a decade and have only once experienced something similar to what you describe and it was a corrupt database.
    So lets just back up a bit.
    If you want mail to flow without issue the first bullet to bite is anti virus.
    * Scanning of outgoing mail is a total waste of time and an added risk for no return. You anti virus already certifies your machine clean.
    * Scanning of incoming mail is of extremely limited value. Thunderbird does not allow scripts in email, so there is no bug that will junmp out and start running even if your mail is not scanned and it contains a virus. The exception to that is attachments. But they are not dangerous either, unless you try and open them. Even then your anti virus should be monitoring the temporary folder on your computer and blocking any attempt to write the infected file, let alone execute the contents.
    * Scanning of your mail folder likewise is of limited value, but is more than often the cause of mail indexes not being updated. These days anti virus program appear to scan everything. Every file as it is accessed and opened. Thunderbird often has quite large files to store mail, up to 4Gb is not all that uncommon. Anti virus program take about 2 minuted per Gigabyte to scan files. So it can be the case that the anti virus is scanning while Thunderbird is timing out waiting for access to the appropriate files.
    To make things more efficient exclude your Thunderbird mail profile folders from on access scanning by your anti virus program. The folders contain NO executable programs, and a weekly scan along with the rest of your computer with Thunderbird closed should be more than adequate. Perhaps scheduled for1am Friday. Gives Friday to deal with anything found and does not interrupt your use of the device.
    A similar exclusion can also be beneficial for other data storage areas (databases especially)
    Finally look at what processes run on your computer. there aerew by default about 40 when it is new and over time this grows with almost every security, office or game you install until your computer is so busy running background processes to check if the latest versions of XXXX has been released that it becomes sluggish and performance on most things is degraded (That common nugget of Windows computers getting slower over time is TRUE, but a large part of that is added processes and security software which is actually reducing performance quite extensively.)
    BTW right clicking a folder, selecting properties and the repair button rebuilds the index non destructively as deleting the files as you mention also looses tags.

  • ITunes and my iPhone show two different amounts for available space

    I have been unable to syncronize my iPhone 5 for a while now.  I've tried unchecking the box to "Sync Music" which warned me it would remove music from my phone and then re-checking to re-add music back to my phone.  This has worked in the past when my phone has had issues synchronizing.  Now I appear to be totally stuck though.
    The issue I've run in to is that iTunes says that I have 4177 songs (24.80 GB) on my iPhone (see below).
    My iPhone under storage settings says I have 6.5GB (see below).
    When I try to sync, I get the error message that says I don't have enough free space.  I've tried clearing out apps, etc to give me more free space but what I'm finding again and again is that the issue is what iTunes thinks I have as free space is different than what my iPhone thinks.
    For instance right now my iPhone shows 20.1 GB available but when I try to synchronize, iTunes says I need an additional 244.6 MB of free space.  I clearly have way more than that according to my iPhone but can't seem to figure anything out.
    If it's helpful, I'm in iOS version 8.2 and iTunes version 12.1.1.4 running on Windows 7 Professional SP1

    You may notice a difference in available space statistics between Disk Utility, Finder, and Get Info inspectors. This is expected and can be safely ignored. The Finder displays the available space on the disk without accounting for the local snapshots, because local snapshots will surrender their disk space if needed.
    About Time Machine's "local snapshots" on portable Macs

  • Transferring set-up for Mail from iMac to iBook

    I just switched from AOL to Mail on my iMac and would like to have the same setup on my iBook. How can I do this without building everything from scratch a second time? I'm not sure where to look for the preferences or whatever that is saved for my Mail configuration. Any help?
    Thanks,
    Joanne

    Joanne,
    One easy way to make the transfer, unless the Mail folder is of extreme size, is to Network the iBook with the iMac. More on this in a moment.
    What you want to do, by network, target disk, or burned media, is REPLACE the com.apple.mail.plist file (Home/Library/Preferences), and the Mail folder (Home/Library/Mail ) on the iBook with a copy of the same files from the iMac. Once you have done this, launch Mail on the iBook, and you will be set. The same can be done with the Address Book (Home/Library/Application Support/Address Book.
    To do this while in direct network link do the following:
    On the iMac, click on System Preference icon in the Dock, and choose Sharing. Next place a check mark in box beside Personal File Sharing.
    Now, on the iBook, open a Finder window, and click on the Network globe in the Sidebar, and you will see your iMac listed. Double click on the iMac icon, and when prompted enter the administrator password for the iMac. At that point choose to connect to your Home folder on the iMac, and then an Icon for that home folder will mount on the iBook. Open it the same as you would open the HD, and then open the HD on the iBook, and locate the files you wish to replace with copies of those on the iMac.
    Hope this helps.
    Ernie

  • Photoshop showing two different sizes for same font size

    Hi folks,
    I've been using Photoshop for a long time, but this problem has popped very rarely along the way and some how remedied itself - I'd like to know this time what's causing it, and how to solve it.
    I'm in a Photoshop document, and I'm working with two different text areas. Both area registering as 14px in size in the Type menu, and yet, they're radically different in size. One is tiny, whilst the other is at least twice, maybe thrice the size. Why is this happening?
    I've checked there's no overlapping text areas and things like that, everything should be fairly normal, it just isn't.
    I'm using Adobe Photoshop CS6 v13.1.2 x64 for Mac, running on a Macbook Pro Retina 1.83ghz and 8GB ram
    Thanks in advance    

    it seems is that in CS6 when you change your font size using free transform - it "remembers" the original pt size when you select the text itself in a certain way:
    The Problem
    I am writing the text in 50 pt size
    I duplicated the document and scaled the text using free transform in 150%
    now when I click inside the text more than once and select some of the letters or even just move the indicator more than once
    it shows me it is still 50pt which is of course not true.
    so as it appears photoshop can occasionally give you the text size before you made a transformation
    The Solution
    a way to get around that is to click only once and drag through at the same time with the first initial click
    now you can see the true font size is 75 pt and not 50 pt.
    to contribute to the confusion it appears the font size in the toolbar stays the same "wrong" size so beware of that
    and if you want to be really sure you can select just the layer in the layer panel (not the text)
    and you will get your "true" font size.
    I made the same test in photoshop CC  14.2.1 and it does not act this way but instead it gives you the "true" font size even if you scale it in free transform
    and select clicking more than once.
    hope this will clarify the matter.

  • Changing sender id for mail from vf03

    Hi Experts,
    When I send a billing document from VF03 to a customer, the e-mail address is read from my sap user (SU01). I would like an e-mail address for each billing type, but I don't now how to change "mail_sender" parameters in the smartforms (ZRLB_INVOICE program).
    Can you help me, please?
    sharing piece of code , where i think could make a difference ,
    PERFORM set_print_param USING    ls_addr_key
                                          ls_dlv-land
                                 CHANGING ls_control_param
                                          ls_composer_param
                                          ls_recipient
                                          ls_sender
                                          cf_retcode
    here the sender is is_sender : DATA: ls_sender             TYPE swotobjid.
    swotobjid - structure contains
    LOGSYS
    OBJTYPE
    OBJKEY
    DESCRIBE
    i dunno how it has 2 b changed. right now i guess it's getting filled with user name data from su01.
    Thanks.
    Arun

    Did you check the subroutine set_print_param. This sub routine should tell you the logic on how the data for sender is used. Use your own custom logic to fill the sender.

Maybe you are looking for

  • Delivery Assignment to Device group in standalone deployment?

    Hi, I am using the standalone deployment of SAP AII 2.1. I have the following two queries regarding assignment of deliveries to device groups. 1. I am able to assign the same delivery to multiple device groups with same business roles as well as diff

  • Database logon failed

    Hi everyone, I know this is a famous error in CR but due to my special case, I need to make sure before enacting any further actions. We are developing a java application which uses CR2013 as its report server (32bit) installed on a 2012 windows serv

  • Weird mapping problem : suggested approach?

    I have a set of related processes activated by a top level process. One of the processes runs three mappings which pull data from SqlServer via three corresponding SqlServer views. The filters for the three mappings ask for rows greater than a partic

  • Iweb Updates

    Morning all, I am trying to update certain pages on my website. When I re-publish the site, it asks if you want to visit the site now and I say yes and it all looks great, all updates are visible, but when I visit my website normally on Safari or Fir

  • Can't get to one site...

    I posted this in the Safari forum but have always had better results when posting here and since this also includes my G3 laptop, I hope it's okay to overlap. I tried searching last night but came up empty relative to what's going on with Safari, Fir