Can some help me to fix the mail date issue please.

Hi,
I recently fresh installed snow leopard server and I successfully migrated my all mails to the new server (leopard server 10.5.8 to snow leopard server 10.6.2).
Now my problem is, for some of the accounts all my old email date header shows as they received on mail migrated date.
Please help me how do I fix it. So my server show the correct date of my old mails.
Thanks,
Gulab Pasha
+918042616308

I had an issue very similar to this not too long ago and what I ended up finding out is that there are 2 records.
The first for when the client machine received the email.
The second date for when the email was originally sent.
The original sent date was all that I cared about, so on the client workstation, I turned off the "Date Received" column and turned on the "Date Sent" column.
That fixed the problem for us ... however, I can understand why the two columns exist. Sometimes people send email that are from different times when their system clock is set incorrectly or other various reasons. With Date Received, email will always be in the order in which it was received. With Date Sent, someone could send an email from 1969 and it would end up on the bottom of your email list.
Just throwing that option out there for you.

Similar Messages

  • HT1849 hello i downloaded an album on my iPad yesterday but the sound volume is very low. Can you help me to fix the problem ?

    hello i downloaded an album on my iPad yesterday but the sound volume is very low. Can someone help me to fix the problem ?

    Hello Kishore1022,
    It sounds like you have a new album downloaded and the tracks all have a very low volume. I recommend checking to see if Sound Check is enabled in the Music settings.
    iPad User Guide
    http://help.apple.com/ipad/7/#/iPad99f37037
    Go to Settings > Music to set options for Music, including:
    Sound Check (to normalize the volume level of your audio content)
    You can also try downloading the purchases onto a computer, with either of these articles depending on your version of the operating system:
    iTunes 11 for Windows: Download previous purchases from the iTunes Store
    http://support.apple.com/kb/PH12491
    Or
    iTunes 11 for Mac: Download previous purchases from the iTunes Store
    http://support.apple.com/kb/PH12283
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • Please some one can help me to fix the special char issue

    Hello,
    Please some one can help me to resolve the issue.
    I was try to load data from PSA to DSO,where it was got failed.
    error message is saying that "Value 'Blythewood' (hex. '0042006C00790074006800650077006F006F0064') of characteristic ZSHPTOCIT contains invalid characters".
    Please advise me to resolve the issue.

    Hi Aryan,
    Change your info-object ZSHPTOCIT to accept Lower Case Letters(it is in General tab of the Info-object definition screen. Check the Lower Case Letters Box) and then load the data. I dont know why you are using the info-object but you may want to check what "Blythewood" means to business users. If it makes sense to them then its fine or esle ask the R/3 team to correct the data.
    Regards,
    Nikhil

  • Can anybody help me in fixing the problem ? of JTable ( CODE GIVEN )

    My problem is
    1)when i select the combo box (2nd column) through keyboard the selected item is not visible in the cell
    2) i need to press TAB key twice to go to next cell .
    3) also before editing i need to press a key to start editing (caret visible) HELP ME
    CODE CAN BE RUN TO SEE WHAT I MEANT
    <code>
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.table.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.Vector;
    import java.text.*;
    public class BaseTable
    public JScrollPane scrollPane;
         public JTable table;
         public int totalRows;
         public int i,numRows,numCols;
         public TableModel model;
         public int rowCount;
         public JComboBox box;
    public BaseTable()
              String[] items=new String[]{"item1","jItem2","kItem3","Item4","Item5","Item6"};
              String[] columns = {"Column1","Column2","Column3","Column4","Column5","Column6","Column7","Column8","Column9"};
              box=new JComboBox(items);
              box.setEditable(true);
    DefaultTableModel baseModel=new DefaultTableModel();
              baseModel.setColumnIdentifiers(columns);
    table = new JTable(baseModel)
                   protected void processKeyEvent(KeyEvent e)
                        if ( e.getID() == KeyEvent.KEY_PRESSED && e.getKeyCode() != e.VK_TAB)
                             int column = table.getSelectedColumn();
                             int row = table.getSelectedRow();
                             Rectangle r = getCellRect(row, column, false);
                             Point p = new Point( r.x, r.y );
                             SwingUtilities.convertPointToScreen(p, table);
                             try
                                  System.out.println("PROCESS KEY EVENT Typing"+e.getKeyCode());
                                  Robot robot = new Robot();
                                  robot.mouseMove(p.x, p.y );
                                  robot.mousePress(InputEvent.BUTTON1_MASK);
                                  robot.mouseRelease(InputEvent.BUTTON1_MASK);
                                  robot.mouseMove(0, 0 );
                             catch (Exception e2) {}
                        else
                             System.out.println("PROCESS KEY EVENT IN ELSE");
                             if(e.getKeyCode() == e.VK_TAB && table.isEditing())
                                  ((DefaultCellEditor)table.getCellEditor()).stopCellEditing();
                             else
                                  super.processKeyEvent(e);
    Vector vectorRow = new Vector();
              vectorRow.addElement("");
              vectorRow.addElement("");
              vectorRow.addElement("");
              vectorRow.addElement("");
              vectorRow.addElement("");
              vectorRow.addElement("");
              vectorRow.addElement("");
              vectorRow.addElement("");
              vectorRow.addElement("");
              TableCellEditor tableCellEditor_comboBox = new MyCustomTableCellEditor(box,this);
              table.getColumnModel().getColumn(1).setCellEditor(tableCellEditor_comboBox);
              ((DefaultTableModel)table.getModel()).addRow(vectorRow);
              rowCount = table.getRowCount();
              ((DefaultTableModel)table.getModel()).fireTableRowsInserted(rowCount,rowCount);
              scrollPane = new JScrollPane(table);
              scrollPane.setForeground(Color.white);
              rowCount = table.getRowCount();
    numCols = table.getColumnCount();
    public class MyCustomTableCellEditor extends DefaultCellEditor
                   JTable table=null;
                   BaseTable baseTable=null;
                   JComboBox box=null;
                   MyCustomTableCellEditor(JComboBox editorComponent,BaseTable baseTable)
                        super(editorComponent);
                        this.table=baseTable.table;
                        this.baseTable=baseTable;
                        setClickCountToStart(0);
                   public Component getTableCellEditorComponent(
                        JTable table,
                        Object value,
                        boolean isSelected,
                        int row,
                        int column)
                             super.getTableCellEditorComponent(table,value,isSelected,row,column);
                             box=(JComboBox)getComponent();
                             box.putClientProperty("JComboBox.isTableCellEditor", Boolean.TRUE);
                             return box;
         public static void main(String s1[])
              BaseTable t=new BaseTable();
              JFrame f=new JFrame();
              f.getContentPane().add(t.scrollPane);
              f.setSize(800,200);
              f.setVisible(true);
    </code>

    sahas@sun, you're very impolite! farukkhan was trying to help, and he's right because when you use code formatting the code is really easier to read.
    Perhaps you have lost a chance for getting the answer!

  • Can anyone help me to resolve the pop3 setting issues with Mail?!

    How can I resolve the issue I am having with the Pop settings in mail?  I am trying to use the Yahoo! Business Mail, which worked perfectly until I upgraded to Mavericks. 

    So, are you planning to tell us the problem?
    Have you foudn the yahoo server settings and compared them 1:1 to what's in Mail?
    Is there an error?
    Grant

  • Can some help with Syncing with the Samsung M300 Please?

    Thank you
    MacPro 3Ghz Dullie - G4 MacBook Pro 17", MacBook 13" AppleTV   Mac OS X (10.4.9)   AE 802.11n -Few ATV's

    Is the Samsung M300 compatible with the Samsung's PC Studio?
    I use Parallels with XP on my MacBook Pro. Samsung's PC Studio program supports the Samsung A717 I just got.
    I exported my Mac address book to Windows via a shared folder, and imported the addresses to the Windows address book. From there the PC Studio program downloaded it to the phone. PC Studio is quite nice. It has full support for directory, calendar and multimedia files. It is too bad that we have run Parallels to get syncing support.
    I called Samsung mobile phone support. They indicated that they are working on Mac support for their phones. They quickly followed that there was no estimated availability date.
    Perhaps if enough people with Samsung phones call the support number (888-987-4357) and request Mac support, they will get moving.
    MacBook Pro Mac OS X (10.4.9)

  • Hi, I have downloaded some avi files and mov files. i am not getting audio while playing the movie. i tried to play with iTunes, QT, DivX player. but I am getting audio in mp4 files. can u help me to fix this

    Hi, I have downloaded some avi files and mov files. i am not getting audio while playing the movie. i tried to play with iTunes, QT, DivX player. but I am getting audio in mp4 files. can u help me to fix this

    First, back up all data and then uninstall "DivX" according to the developer's instructions.
    Then try this:
    VideoLAN - Download official VLC media player for Mac OS X

  • TS3694 hey everyone.. i have a problem with my 3Gs iphone.. i updated to the ios5 and now when i open it says that i have to connect it with the itunes. when i connect it says that has an error 28 something like that.. can anyone help me to fix it?? Regar

    hey everyone.. i have a problem with my 3Gs iphone.. i updated to the ios5 and now when i open it says that i have to connect it with the itunes. when i connect it says that has an error 28 something like that.. can anyone help me to fix it?? Regards

    Error 23, 28, 29: These errors may indicate a hardware issue with your device. Follow the steps in this article. Also attempt to restore while connected with the white USB Dock Connector cable that shipped with your device, on a known good computer and network to isolate this issue to the device. The MAC address being missing or the IMEI being the default value, (00 499901 064000 0), can also confirm a hardware issue. Out-of-date or incorrectly configured security software can also cause these errors.

  • I recently have ipad but before i sell it i made a back up of it and by an iphone when i put all the date on my iphone some files and software did not install is there anything i can do to recover the lost data? please help

    i recently have ipad but before i sell it i made a back up of it and by an iphone when i put all the date on my iphone some files and software did not install is there anything i can do to recover the lost data? please help

    I don't think you're on iOS 5, I think you're using iOS 6.  That's the latest version.
    Unless you've used iCloud to back up your documents, you won't be able to restore them.  And for future reference, you don't have to uninstall Pages to update your iPad anymore.  Sorry about this.

  • I accidentally pushed the power button of my macbookpro... it restarted but doesnt open... what appears now is a flashing FOLDER logo with a QUESTION MARK on it.. can someboby help me to fix this?

    i accidentally pushed the power button of my macbookpro... it restarted but doesnt open... what appears now is a flashing FOLDER logo with a QUESTION MARK on it.. can someboby help me to fix this?

    (Assuming you don't have a firmware boot lock set)
    First easy step...
    1. Shut down the computer if it's on (hold the power button down... until it shuts off)
    2. Press the power button
    3. Immediately press AND hold the Option key ASAP
         Hold until drive option images appear in a single row across the screen. Typically most people running 10.7 or 10.8 will see 2 drive options to boot from: the main volume they usually boot from, and a recovery volume. If your main volume pops up. Use the cursor or arrow keys to highlight/select the main volume and press enter. That should boot your main volume. Let me know what you get from this point... I'll give you more as you go along.

  • Hi i need some help im having problems the ipod can not be turned , in fact it was working fine but suddenly switched off and did not return to light n because it reconnected and if I had drums

    hi i need some help im having problems , the ipod can not be turned , in fact it was working fine but suddenly switched off and did not return to light n because it reconnected and if I had drums  . what can i do to turned on .
    its an ipod touch 64gb

    That symptom is covered here:
    iPod touch: Hardware troubleshooting

  • My mobile is getting hang since last 1 hour, torch of mobile is still on and the touchscreen is not working, I can't unlock my mobile. Can anyone help me to fix it

    My mobile is getting hang since last 1 hour, torch of mobile is still on and the touchscreen is not working, I can't unlock my mobile.
    Can anyone help me to fix it?

    Please press the power- and the homebutton simultaneously until the apple logo will appear ( 10 sec.). That´s it.

  • HT1267 I plugged my iPhone 4 into my computer with the USB charger cable, and the screen went blank and came up with a picture of the usb cable with an arrow pointing to iTunes....Can anyone help get this fixed????

    I plugged my iPhone 4 into my computer with the USB charger cable, and the screen went blank and came up with a picture of the usb cable with an arrow pointing to iTunes....Can anyone help get this fixed????

    Connect your iPhone to iTunes and restore or follow the prompts.

  • Can anybody help me in finding the reasons why the time of email received are different from the one on my macbook which time is correct

    Hi
    Can anyone help me in finding the reason why the date on e=mail reced is different from the one on my MacBook eventhough it is correct
    Thanks

    Try this...
    Triple click anywhere in the line below to select it and press Ctrl+C to copy it.
    cmd /k netsh winsock reset
    Press the WinLogoKey+R to open the run dialog, then Ctrl+V to paste, then press enter/return.
    You should get something similar to this:
    Reboot the computer and the problem should be resolved.
    If it doesn't work then perhaps a full tear down and rebuild of iTunes will fix things. See Troubleshooting issues with iTunes for Windows updates for details.
    tt2

  • Can some help with CR2 files ,Ican`t see CR2 files in adobe bridge

    can some help with CR2 files ,I can`t see CR2 files in adobe bridge when I open Adobe Photoshop cs5- help- about plugins- no camera raw plugins. When i go Edit- preference and click on camera raw  shows message that Adobe camera raw plugin cannot be found

    That's strage. Seems that the Camera Raw.8bi file has been moved to different location or has gone corrupt. By any chance did you try to move the camera raw plugin to a custom location?
    Go To "C:\Program Files (x86)\Common Files\Adobe\Plug-Ins\CS5\File Formats" and look for Camera Raw.8bi file.
    If you have that file there, try to download the updated camera raw plugin from the below location.
    http://www.adobe.com/support/downloads/thankyou.jsp?ftpID=5371&fileID=5001
    In case  you ae not able to locate the Camera Raw.8bi file on the above location, then i think you need to re-install PS CS5.
    [Moving the discussion to Photoshop General Discussions Forum]

Maybe you are looking for

  • Posting to different GR/IR account based on purchase order type

    We are implementing cross company stock transport orders that require an AP invoice to be posted against the goods receipt.  Our AP department does not want the GR/IR postings to go to the account used for traded AP.  I cannot determine a method usin

  • Windows 8 Upgrade Capable Systems Official List

    This is the official list of Windows 8 Upgrade Capable Systems from Lenovo http://support.lenovo.com/en_US/research/hints-or-tips/detail.page?DocID=HT074688 This is the official link for download drivers, of course there are not yet uploaded for down

  • Parental Controls bug in Mountain Lion 10.8.2

    For years I've used Parental Controls, not to restrict my daughter's web content, but to limit her time on the computer.  But tonight I upgraded Mountain Lion from 10.8.1 to 10.8.2 and something broke. Suddenly every secure web page she tries to acce

  • Doubt in Import

    Hi experts, I am having the export dump for the whole database but i have to import into another database without any data in the tables... can any one guide me

  • Why doesn't iPhone have the options to import photos directly in Windows 8 like in Windows 7?

    It used to be able to import photos directly into the same folder as the photos are synced under "Last Import" back in Windows 7. But now in windows 8, I have to use Dropbox to import photos, yet Dropbox doesn't have the options to erase photos alrea