mail command on sco box


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users mail command on sco box
# 1  
Old 08-17-2007
mail command on sco box

Hello,
Can anyone tell me why the command below will not work on a SCO box, but does fine on aix, suse boxes. Thanks.

echo "test" | mail -s "Test" test@test.com

Course the email address I just faked out for sample purpose. I see from the it gives the following error below. I also changed specific company email address to just test. Thanks for any help. Bill


From <> Fri Aug 17 15:21:36 2007
From: MMDF Mail System <mmdf@test.test.com>
To: root@test.test.com
Subject: Failed mail
Date: Fri, 17 Aug 2007 15:21:36 -0500 (CDT)
Message-ID: <200708171521.aa11459@test.test.com>
Status: R

Trouble sending mail on test.test.com:

============ Transcript follows ============

Unable to parse address
Submit error: No valid addresses

============== Message follows =============
From: root@test.test.com (Superuser)
X-Mailer: SCO OpenServer Mail Release 5.0.7
To: test.test@testme.com
Subject: test
Date: Fri, 17 Aug 2007 15:21:36 -0500 (CDT)
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

UNIX mail box

Currrently I am not able to send/receive any emails to email id. I believe my mail box is full in server. could you please let me kknow to clear the emails in the unix server. (2 Replies)
Discussion started by: ramkumar15
2 Replies

2. SCO

I need a box to run SCO 3.2 5.0.5 i386 with...

need it to be able to run Seagate STT8000A tape drive. Any suggestions where to go. (5 Replies)
Discussion started by: Mike Gomes
5 Replies

3. SCO

SCO box loosing network connection

Hello, We have a SCO box running OpenServer 5.0.5. This has our business software on it (15 users connecting via terminal emulator (ansio lite)) which has been running for about 12-15yrs strong! Within the past 6-8 months, at random times of the day, we've been loosing connection to this box. ... (8 Replies)
Discussion started by: rpcbrielle
8 Replies

4. UNIX for Advanced & Expert Users

Sendmail help for nobody mail box

Hi there all, I got a small tiny problem of not remambering how this worked. I get when I mail to a non existing mailbox I get a return failer to nobody@domain.bla wich will end up in root@domain.bla What I want is to get it to /dev/NULL so I dont get a messege when I mailed to a non existing... (0 Replies)
Discussion started by: draco
0 Replies

5. Shell Programming and Scripting

Unix Mail Box

Hi Friends, I'm new to Unix. I have a fbackup step like /bin/nice /etc/fbackup -f /dev/rmt/0m -i / -I /opt/monitrol/tmp/Index.full 2 > /var/adm/error.log the errors for this step is redirected to a log file. How can I make to trigger mails when error occurs. Please suggest. Thanks in... (4 Replies)
Discussion started by: avik.nandi
4 Replies

6. UNIX for Dummies Questions & Answers

I need an scp command from a unix box to a windows box.

scp file="myfile.txt" todir="user@somehost:(M:drive:/somepath/)"/ Not sure I need it to go to a specific drive on the windows box (1 Reply)
Discussion started by: xgringo
1 Replies

7. Shell Programming and Scripting

Mail from unix box

I am executing the below script from unix box If row count is zero the mail should not set to the client The problem is, if row count is zero the mail is going to the client (what is wrong in the script) SET HEAD OFF FEED OFF PAGES 0 Select count(*) as change_count from... (9 Replies)
Discussion started by: pmsuper
9 Replies

8. IP Networking

Adding a New IP Addresses to a SCO Unix Box

I tried the search and didn't come up with an answer to my question so I decided I'd post it.... How do you add a new IP address to a SCO Unix box? We're adding a router and I need to add the IP address to the UNIX box for the system to find it.. Thanks in Advance (1 Reply)
Discussion started by: dman110168
1 Replies

9. UNIX for Advanced & Expert Users

Imaging of SCO-UNIX box

Does anyone know of any good imaging tools that can be used to create an image of a Sco-Unix box? (2 Replies)
Discussion started by: gmrfh1
2 Replies
Login or Register to Ask a Question
GLSCISSORARRAY(3G)						   OpenGL Manual						GLSCISSORARRAY(3G)

NAME
glScissorArray - define the scissor box for multiple viewports C SPECIFICATION
void glScissorArrayv(GLuint first, GLsizei count, const GLint *v); PARAMETERS
first Specifies the index of the first viewport whose scissor box to modify. count Specifies the number of scissor boxes to modify. v Specifies the address of an array containing the left, bottom, width and height of each scissor box, in that order. DESCRIPTION
glScissorArrayv defines rectangles, called scissor boxes, in window coordinates for each viewport. first specifies the index of the first scissor box to modify and count specifies the number of scissor boxes to modify. first must be less than the value of GL_MAX_VIEWPORTS, and first + count must be less than or equal to the value of GL_MAX_VIEWPORTS. v specifies the address of an array containing integers specifying the lower left corner of the scissor boxes, and the width and height of the scissor boxes, in that order. To enable and disable the scissor test, call glEnable() and glDisable() with argument GL_SCISSOR_TEST. The test is initially disabled for all viewports. While the test is enabled, only pixels that lie within the scissor box can be modified by drawing commands. Window coordinates have integer values at the shared corners of frame buffer pixels. glScissor(0,0,1,1) allows modification of only the lower left pixel in the window, and glScissor(0,0,0,0) doesn't allow modification of any pixels in the window. When the scissor test is disabled, it is as though the scissor box includes the entire window. ERRORS
GL_INVALID_VALUE is generated if first is greater than or equal to the value of GL_MAX_VIEWPORTS. GL_INVALID_VALUE is generated if first + count is greater than or equal to the value of GL_MAX_VIEWPORTS. GL_INVALID_VALUE is generated if any width or height specified in the array v is negative. ASSOCIATED GETS
glGet() with argument GL_SCISSOR_BOX glIsEnabled() with argument GL_SCISSOR_TEST SEE ALSO
glEnable(), glViewport(), glViewportIndexed(), glViewportArray() COPYRIGHT
Copyright (C) 2010 Khronos Group. This material may be distributed subject to the terms and conditions set forth in the Open Publication License, v 1.0, 8 June 1999. http://opencontent.org/openpub/. AUTHORS
opengl.org opengl.org 06/10/2014 GLSCISSORARRAY(3G)