Sponsored Content
The Lounge What is on Your Mind? Under Consideration: Migrate the Forums to Discourse Post 303045019 by Neo on Wednesday 11th of March 2020 12:54:19 AM
Old 03-11-2020
Regarding this "pm migration errors"

Code:
importing private messages...
skipping pm-2068 `to_user_array` is not properly serialized -- {"bcc"=>"madEG"}
pm-2068 has no target (a:1:{s:3:"bcc";s:5:"madEG";})
     1001 / 32205 (  3.1%)  [4272085 items/min]  skipping pm-2084 `to_user_array` is not properly serialized -- {"bcc"=>"vino"}
pm-2084 has no target (a:1:{s:3:"bcc";s:4:"vino";})
     1002 / 32205 (  3.1%)  [3945003 items/min]  skipping pm-2099 `to_user_array` is not properly serialized -- {"bcc"=>"jamcalicut"}
pm-2099 has no target (a:1:{s:3:"bcc";s:10:"jamcalicut";})
     1003 / 32205 (  3.1%)  [3655451 items/min]  skipping pm-2100 `to_user_array` is not properly serialized -- {"bcc"=>"arunkumar_mca"}
pm-2100 has no target (a:1:{s:3:"bcc";s:13:"arunkumar_mca";})
     1004 / 32205 (  3.1%)  [3458157 items/min]  skipping pm-2106 `to_user_array` is not properly serialized -- {"bcc"=>"thanusha"}
pm-2106 has no target (a:1:{s:3:"bcc";s:8:"thanusha";})
     1005 / 32205 (  3.1%)  [3408788 items/min]  skipping pm-2108 `to_user_array` is not properly serialized -- {"bcc"=>"Danielillo300"}

  blah, blah, blah

I think I'll look at the code and just comment this out, if necessary, as there is no compelling reason to spend a lot of time on migrating pms "perfectly", I think,.

EDIT: On second thought, "skipping these handful of pms" is not going to harm the migration, so I think I will 'let this be" and move on.
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to migrate ?

Currently, I am planning a migration between machine which under True64UNIX. The new machine will run with higher version O/S. My question is, is there any solution on migrating one machine to another which with different O/S version? My goal is keeping minimum impact to the users. Excuse my... (1 Reply)
Discussion started by: coolmans
1 Replies

2. UNIX for Dummies Questions & Answers

Pipe not taken into consideration

I'm trying to see every file which my group (staff) has in a certain directory, recursively. The pipe ls -l -R | grep staff is not working exactly as I want, as for every directory to which my user does not have access, a line like: ls: ./directory/lost+found: The file access permissions do not... (5 Replies)
Discussion started by: panchopp
5 Replies

3. Solaris

Migrate oracle solaris 5.8 5.9

If I have an oracle 9 database environment on a san running solaris 5.8 as the os. Can I plug the san into a Solaris 5.9 environment and have the database work ? - as long as binaries are on the san (1 Reply)
Discussion started by: tim-carroll@com
1 Replies

4. Solaris

Can you migrate UFS to ZFS ?

I have some UFS volumes (non root), that I would like to change into ZFS volumes. Is this possible ? I think the only method is to create a new zfs volume and copy the data accoss, this would take a long time for us. Is there a quicker way ? Regards (5 Replies)
Discussion started by: wjones
5 Replies

5. Solaris

Migrate from MPXIO to Powerpath

Here is the issue: I am building a database server using Solaris 10x86 U8. The system is jumpstarted with mpxio enabled and booting from the san. We need to have powerpath 5.3 installed and would like to have powerpath take control of the the boot san as well or have mpxio control the san... (2 Replies)
Discussion started by: nabru72
2 Replies

6. Linux

Mysql Migrate

Hi , I would like to (MYSQL) migrate the all the data from solari's to linux box. I have checked whether mysql is installed or not. rpm -qa | grep -i mysql I confirmed !!!! I want to know the following points. 1) How can get to know what are mysql data files and location as well.... (4 Replies)
Discussion started by: Mani_apr08
4 Replies

7. BSD

Migrate a Hard Disk

hi Has anyone already tried to migrate a hard disk with FreeBSD using recoverdisk? (1 Reply)
Discussion started by: ccc
1 Replies

8. Shell Programming and Scripting

Migrate from FTP to SFTP

Hi,I am using following code for FTP in shell script file and it is working.Now I want to migrate from FTP to SFTP.What code changes/steps I have to perform for SFTP ? ftp -in <<FIN open $SAP_UP_SERVER user $SAP_UP_USER $SAP_UP_PASSWORD asc put... (7 Replies)
Discussion started by: Nitin Varshneya
7 Replies
Mail::Send(3)						User Contributed Perl Documentation					     Mail::Send(3)

NAME
Mail::Send - Simple electronic mail interface SYNOPSIS
require Mail::Send; $msg = Mail::Send->new; $msg = Mail::Send->new(Subject => 'example', To => 'timbo'); $msg->to('user@host'); $msg->to('user@host', 'user2@example.com'); $msg->subject('example subject'); $msg->cc('user@host'); $msg->bcc('someone@else'); $msg->set($header, @values); $msg->add($header, @values); $msg->delete($header); # Launch mailer and set headers. The filehandle returned # by open() is an instance of the Mail::Mailer class. # Arguments to the open() method are passed to the Mail::Mailer # constructor. $fh = $msg->open; # some default mailer $fh = $msg->open('sendmail'); # explicit print $fh "Body of message"; $fh->close # complete the message and send it or die "couldn't send whole message: $! "; DESCRIPTION
Mail::Send creates e-mail messages without using the Mail::Header knowledge, which means that all escaping and folding must be done by you! Simplicity has its price. When you have time, take a look at Mail::Transport METHODS
Constructors Mail::Send->new(PAIRS) A list of header fields (provided as key-value PAIRS) can be used to initialize the object. Header fields $obj->add(FIELDNAME, VALUES) Add values to the list of defined values for the FIELDNAME. $obj->bcc(VALUES) $obj->cc(VALUES) $obj->delete(FIELDNAME) $obj->set(FIELDNAME, VALUES) VALUES will replace the old values for the FIELDNAME. Returned is the LIST of values after modification. $obj->subject(VALUES) $obj->to(VALUES) Sending $obj->open(OPTIONS) The OPTIONS are used to initiate a mailer object via Mail::Mailer::new(). Then Mail::Mailer::open() is called with the knowledge collected in this Mail::Send object. SEE ALSO
This module is part of the MailTools distribution, http://perl.overmeer.net/mailtools/. AUTHORS
The MailTools bundle was developed by Graham Barr. Later, Mark Overmeer took over maintenance without commitment to further development. Mail::Cap by Gisle Aas <aas@oslonett.no>. Mail::Field::AddrList by Peter Orbaek <poe@cit.dk>. Mail::Mailer and Mail::Send by Tim Bunce <Tim.Bunce@ig.co.uk>. For other contributors see ChangeLog. LICENSE
Copyrights 1995-2000 Graham Barr <gbarr@pobox.com> and 2001-2007 Mark Overmeer <perl@overmeer.net>. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://www.perl.com/perl/misc/Artistic.html perl v5.16.2 2012-08-29 Mail::Send(3)
All times are GMT -4. The time now is 07:36 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy