Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Unix email problem please help Post 36681 by esh on Tuesday 3rd of June 2003 09:49:18 AM
Old 06-03-2003
will tr below

will try to see if congested

(Admin note: Merged secondary topic back into original - RTM)

Last edited by RTM; 06-03-2003 at 11:21 AM..
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

email problem

hello all, i need to know if there is a email compatable software that would work with solaris similar to how outlook works for windows? i have groupwise 5.0 running on my network and i need to access my email from a sun box. so i need an interface software, if you will, to be able to check my... (5 Replies)
Discussion started by: Holistic
5 Replies

2. UNIX for Advanced & Expert Users

Unable to send eMail from a UNIX-Host ( using mailx ) to a Outlook-email-addres(Win)

Hi A) I am able to send eMail using mailx from a UNIX ( solaris 8 ) host to my Outlook-email-ID : FName.Surname@Citigroup.com ( This is NOT my actual -eMail-ID). But in Outlook the "From :" eMail address is displayed as " usr1@unix-host1.unregistered.email.citicorp.com " .i.e the words... (2 Replies)
Discussion started by: Vetrivela
2 Replies

3. UNIX for Dummies Questions & Answers

Send email where # is in the email address - Using Unix

Hi All, How do I send an email using malix where email address contains a #. I have a email address like this : #test@test.com I want to send email like malix -s "TEST" #test@test.com < SOMEFILE I tried \# but doesn't work. Please let me know how we can achieve this? I am in... (1 Reply)
Discussion started by: jingi1234
1 Replies

4. Shell Programming and Scripting

I have some problem in sending an email, please help me.

Hi, I am writing a kornshell script, once the successful completion of the script I need to send an email with body of a text along with an attachment. But i couldnt able to send an email with both body of the text and attachment at the same time in unix. The following is the code i tried, ... (2 Replies)
Discussion started by: Sheethal
2 Replies

5. UNIX for Dummies Questions & Answers

Cron Email Problem

I have two different cron jobs that run on the same days. The jobs are 7 hours apart. Both jobs are set to send notification emails when they start running. Both jobs always run successfully, but I only receive an email from the first job. I never get the email from the second job. ... (0 Replies)
Discussion started by: sasaliasim
0 Replies

6. Solaris

email configuration problem

I am using solaris 10 on x86. I have a requirement to send email using shell script. User can configure any email address like xyz@yahoo.com or xyz@hotmail.com in the configuration file. I have studied online tutorial and they say. we should modify sendmail.cf for this purpose. ... (3 Replies)
Discussion started by: mmunir
3 Replies

7. UNIX for Advanced & Expert Users

problem on email sent but not received

hi.. I have the porblem where the email was sent but not received by users.. The message as below:- Dec 16 11:42:04 isp postfix/smtp: A80042B4B: to=<user_name@example.com.my>, relay=smtp.example.com.my:25, delay=890, delays=0.17/0.02/31/859, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued... (1 Reply)
Discussion started by: bh_hensem
1 Replies

8. Linux

Problem with email mailman in Ubuntu

I have just newly installed mailman on ubuntu server. Using Apache2 web server and Exim4 mail server. Mailman is started and running fine. I can send email to and from an login account from the list server. However, when I send email to the cctest4@list.nmit.vic.edu.au , no email send to the... (2 Replies)
Discussion started by: cchoe
2 Replies

9. Forum Support Area for Unregistered Users & Account Problems

Problem changing the email address associated with my UNIX.com account

Hello I have had an account for many years. I have attempted to change the email address associated with my account. After logging-in to unix.com and revising my email address, I received a 're-verification' email at that new address. The first link in that email took me to a page with the... (1 Reply)
Discussion started by: irb
1 Replies

10. Post Here to Contact Site Administrators and Moderators

VIP Membership - The UNIX and Linux Forums - Get Your UNIX.COM Email Address Here

We work hard to make The UNIX and Linux Forums one of the best UNIX and Linux knowledge sources on the net. The site is certainly one of the top UNIX and Linux Q&A sites on the web. In order to provide certain members the best quality account services, you can now get some great extra features by... (2 Replies)
Discussion started by: Neo
2 Replies
POLYMERGE(1gv)															    POLYMERGE(1gv)

NAME
polymerge - merge coincident vertices, collinear edges, coplanar faces in an OOGL OFF object SYNOPSIS
polymerge [-v vertex_thresh] [-e edge_thresh] [-f face_thresh] [-V] [-E] [-F] [-d] [-b] [inputfile.off] DESCRIPTION
Polymerge eliminates redundancies from polyhedral objects in OOGL's OFF format, and writes another OFF object to its standard output. (Optionally it can produce instead an input file for Brakke's Evolver.) Specifically, it combines nearly-coincident vertices, nearly- collinear edges, and nearly-coplanar faces. Vertices which aren't used on any face are deleted, as are faces with less than three ver- tices. Thresholds for approximate equality are adjustable from the command line. Options are: -v vertex_thresh Merge vertices when they're closer than vertex_thresh apart; the default is .00001. -V Don't attempt to merge vertices. -e edge_thresh Merge edges where |sin(vertex_angle)| < edge_thresh; the default is When edges are merged, the corresponding vertex is removed. -E Don't attempt to merge edges. (4OFF edges are never merged.) -f face_thresh Merge faces sharing an edge where the faces are nearly coplanar: when |sin(angle_between_face_normal_vectors)| < face_thresh. The default is .03, or about two degrees. Note that merging can create faces which are concave polygons. -F Don't attempt to merge faces. (4OFF faces are never merged.) -b Produce an output file in .fe format for Brakke's Surface Evolver, instead of a new OFF file. -d Include debugging information as comments in the new OFF object. The comments indicate which vertices and faces in the original object correspond to which in the new one. Messages include: # Vtx nnn->mmm Merged vertices nnn and mmm (both indices in the original object). # Merged face nnn into mmm (vertices vvv www) n1.n2 s Faces nnn and mmm in the original object were merged; their common edge joined original vertices vvv and www. The cosine of the angle between the face normals was s. vertex coordinates # newvertno [order] # oldvertno Each vertex written appears with its new index, its order (number of edges touching that vertex), and its old index (index of a cor- responding vertex in the original object). face description # oldvertno ... For each new face, with N vertices after reduction, the comment indicates N corresponding vertices in the original object. AUTHOR
Stuart Levy, Geometry Center, University of Minnesota SEE ALSO
anytooff(1), offconsol(1) BUGS
Coplanar faces are merged even if they were assigned different colors. Should be able to handle binary OFF objects, but this hasn't been tested. Geometry Center 25 July 1993 POLYMERGE(1gv)
All times are GMT -4. The time now is 07:53 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy