imap_mail_move or imap_mail_copy option

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • hong soup kim

    imap_mail_move or imap_mail_copy option

    To develoment.

    I use imap function by UW imap4 at PHP.

    imap_mail_move function can have option CP_UID for coping UID by PHP manual.

    but UID does not copy.

    I don't know why it is not.

    I hope to detect the reason.


    PHP 4.3.x
    UW IMAP4
  • Dennis Biletsky

    #2
    Re: imap_mail_move or imap_mail_copy option


    "hong soup kim" <ccomai@naus.ne t> ???????/???????? ? ???????? ?????????:
    news:f40509da.0 404121722.6757f d01@posting.goo gle.com...[color=blue]
    > To develoment.
    >
    > I use imap function by UW imap4 at PHP.
    >
    > imap_mail_move function can have option CP_UID for coping UID by PHP[/color]
    manual.[color=blue]
    >
    > but UID does not copy.
    >
    > I don't know why it is not.
    >
    > I hope to detect the reason.
    >
    >
    > PHP 4.3.x
    > UW IMAP4[/color]
    imap_mail_move this function is move messages only, but does not make a
    copy. CP_ UID should be used when you want indicate UID of message that is
    moved instead of message's number or sequence of UIDs instead of range of
    messages' numbers.
    For copying you can use imap_mail_copy


    Comment

    • hong soup kim

      #3
      Re: imap_mail_move or imap_mail_copy option

      "Dennis Biletsky" <ufafa@ua.fm> wrote in message news:<c5ggb6$1i 56$1@fortress.i ntercom.net.ua> ...[color=blue]
      > "hong soup kim" <ccomai@naus.ne t> ???????/???????? ? ???????? ?????????:
      > news:f40509da.0 404121722.6757f d01@posting.goo gle.com...[color=green]
      > > To develoment.
      > >
      > > I use imap function by UW imap4 at PHP.
      > >
      > > imap_mail_move function can have option CP_UID for coping UID by PHP[/color]
      > manual.[color=green]
      > >
      > > but UID does not copy.
      > >
      > > I don't know why it is not.
      > >
      > > I hope to detect the reason.
      > >
      > >
      > > PHP 4.3.x
      > > UW IMAP4[/color]
      > imap_mail_move this function is move messages only, but does not make a
      > copy. CP_ UID should be used when you want indicate UID of message that is
      > moved instead of message's number or sequence of UIDs instead of range of
      > messages' numbers.
      > For copying you can use imap_mail_copy[/color]

      Thank you for reply.

      because generally, it use FT_UID at imap function.

      I was mistaken.

      Thank you.

      Comment

      Working...