SCO-5.0.7 Setup Email-2.5.1 problem


 
Thread Tools Search this Thread
Operating Systems SCO SCO-5.0.7 Setup Email-2.5.1 problem
# 1  
Old 02-21-2008
Network SCO-5.0.7 Setup Email-2.5.1 problem

Did anyone got Email-2.5.1 working on Sco 5? It goes thru
./configure
with no problem
but bump into an error message when use
make

I am including the error message bellow:

Undefined first referenced
symbol in file
__abbr_table_1.1 email.o
stat64 file_io.o
__xassert addr_parse.o
_xgetlogin_r email.o
_xmknod execgpg.o
_xttyname_r email.o
creat64 message.o
fopen64 email.o
fstat64 progress_bar.o
_nuname conf.o
UX:i386ld: ERROR: Symbol referencing errors. No output written to email
*** Error code 1 (bu21)
*** Error code 1 (bu21)
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

Problem Openvas-setup in CentOs 6.7 !

hi I installed Openvas we have the following problem internet Connection is Ok Even Reinstall the problem is not resolved Openvas Setup, Version: 0.5 Step 1: Update NVT's and SCAP data Please note this step could take some time. Once completed, NVT's and SCAP data will be updated... (12 Replies)
Discussion started by: mnnn
12 Replies

2. UNIX for Dummies Questions & Answers

Cygwin setup old package problem.

Hi there, I am in need to compile an old project for cygwin, but it needs some old packages to compile. I tried to download the x86 setup.exe from cygwin web site. Then downloaded the old packages from various sites and put it in an empty directory I run the setup.exe file and install from local... (1 Reply)
Discussion started by: lucky7456969
1 Replies

3. UNIX for Dummies Questions & Answers

Email server setup - basic help; tutorial for debian/Postfix/dovecot

Hello, I have been trying to setup a email server here at home, for me and a few friends. Nothing fancy, just a super basic - but secure - email server. I have been having trouble over the course of the past 2-3 weeks fumbling through various online tutorials. It shouldn't be SO hard =) ... (0 Replies)
Discussion started by: jalisco
0 Replies

4. UNIX for Advanced & Expert Users

Home email server setup - stuck

Hello, Firstly, I am using Debian 7.1, updated (as of today), I installed postfix, sasl, and dovecot. I have read through various online tutorials and quick installation guides, videos etc. And, ventured into the actual text of postfix, sasl and dovecot. Everything is installed and "appears"... (5 Replies)
Discussion started by: jalisco
5 Replies

5. UNIX for Dummies Questions & Answers

[solved]How do I setup outgoing email in solaris?

I have a Solaris box that I need to enable outgoing email from alarm purposes. How do I do that so the command echo "test this email" | mailx test@address.com will go through? ---------- Post updated at 02:24 PM ---------- Previous update was at 02:04 PM ---------- Needed to open port 25/smtp... (1 Reply)
Discussion started by: SIFT3R
1 Replies

6. Shell Programming and Scripting

How to send email using shell script in UNIX, Is any environment setup required in Mac OS X ?

Hi All, I am using Mac OS X (Leopard OS). I am very new to UNIX. My requirement is that, by running a shell script, I create a log file. So I have to send a mail having that log file attached. What I tried to do is, I simply tried to check,whether this direct command works or not. So I... (2 Replies)
Discussion started by: Afreen
2 Replies

7. Infrastructure Monitoring

How to setup Email notification when storage reach certain % ?

Hi, I recently research on how auto-mailing to notify the increase of storage size. I try avoid schedule/routine checkup the storage to determine increase the storage size. It is time-consuming. Any comment on how to get the storage size %? and automatically trigger mailing function instead... (16 Replies)
Discussion started by: i-counsellor
16 Replies

8. SCO

SCO 5.0 setup auto reboot

Hello, How do a schedule a reboot of a SCO 5.0 box like every wednesday at 3:30 am. Doesn't have a /etc/crontab file like our Suse boxes have. Thanks for any help. (6 Replies)
Discussion started by: benefactr
6 Replies

9. Shell Programming and Scripting

RAID setup automation problem

Hi guys, I'm trying to write a small script that sets up RAID using MDADM without asking user for any input. Here's what I'm doing: start=`mdadm --create $2 --level=$3 --raid-devices=$4 $5 $6 << MAYDAY y MAYDAY` When I it, I get this ./redundancy -setup /dev/md0 1 2 /dev/files/test0... (3 Replies)
Discussion started by: alirezan
3 Replies

10. SuSE

Setup Problem with SUSE Linux

I setup SUSE Linux 10. I downloaded from SUSE website. A DVD version. But I have a problem: Please click to see the screen shots Shot 1: (Problem is here, with Software) http://www.vernoos.net/shot-1.jpg Shot 2: http://www.vernoos.net/shot-2.jpg Shot 3:... (1 Reply)
Discussion started by: HASSELBLAD
1 Replies
Login or Register to Ask a Question
Email::Send::IO(3pm)					User Contributed Perl Documentation				      Email::Send::IO(3pm)

NAME
Email::Send::IO - Send messages using IO operations SYNOPSIS
use Email::Send; my $mailer = Email::Send->new({mailer => 'IO'}); $mailer->send($message); # To STDERR $mailer->mailer_args('filename.txt'); $mailer->send($message); # write file DESCRIPTION
This is a mailer for "Email::Send" that will send a message using IO operations. By default it sends mail to STDERR, very useful for debug- ging. The IO functionality is built upon "IO::All". Any additional arguments passed to "send" will be used as arguments to "IO::All::io". You can globally change where IO is sent by modifying the @Email::Send::IO::IO package variable. @Email::Send::IO::IO = ('-'); # always append to STDOUT. Examples Sending to STDOUT. send IO => $message, '-'; Send to a socket. send IO => $message, 'server:1337'; SEE ALSO
Email::Send, IO::All, perl. AUTHOR
Current maintainer: Ricardo SIGNES, <rjbs@cpan.org>. Original author: Casey West, <casey@geeknest.com>. COPYRIGHT
Copyright (c) 2005 Casey West. All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.8.8 2007-07-29 Email::Send::IO(3pm)