How to create mailing list in openldap?

 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications How to create mailing list in openldap?
# 1  
Old 06-05-2014
How to create mailing list in openldap?

Hi.
I want to create mailing list in my directory, however standart object classes groupOfUniqueNames and groupOfNames don't contain mail attribute. What is the common way to create mailing list in openldap?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Variable to create a list

Hi all, I couldn't find an answer for this easy question, probably because the keywords I used in the search are too generic. I just want to make a list of numbers using the value of a variable, like this: NumFiles=$(ls | wc -l) for i in {1..$NumFiles}; do Say $NumFiles = 5. Bash... (3 Replies)
Discussion started by: Aquila
3 Replies

2. Shell Programming and Scripting

Create range from a list

Hello everyone, I am trying to create a script that will make a range or ranges based on a sorted list of numbers. Eg. If the list is like 1 2 3 4 5 6 7 12 13 14 15 The output range should be: 1-7 12-15 (9 Replies)
Discussion started by: run_time_error
9 Replies

3. UNIX for Dummies Questions & Answers

Create a phone list

Is there a step by step instructions for creating a simple phone list? (3 Replies)
Discussion started by: organcory
3 Replies

4. Shell Programming and Scripting

help with mailing contents to a list of people

I have to create a unix program that will mail the contents of a file to a list of users.The file to be mailed will be provided as an argument to the program on the command line. The list of users or mail recipients should be a ”variable” that is created inside the program This program MUST be... (1 Reply)
Discussion started by: toejam
1 Replies

5. Shell Programming and Scripting

How to create a list of entries without vi

Hi Is there a way to create a list of entries in a file without using vi to create this list ? I like to write a shell script that would create a list like this: apple : 2 orange : 4 pear : 3 Any tips/suggestions ? Thanks (3 Replies)
Discussion started by: mpc8250
3 Replies

6. Shell Programming and Scripting

Help with procmail mailing list

I need to find out for sure whether or not Solaris 10x86 comes with procmail installed? I only need it for mail subscription "Only" WE have about 51 mailing lists subscriptions from listproc. I need help just doing mailing lists. How to best go about this? I downloaded version for Solaris... (0 Replies)
Discussion started by: parente
0 Replies

7. UNIX for Advanced & Expert Users

Help with procmail mailing list

I need to find out for sure whether or not Solaris 10x86 comes with procmail installed? I only need it for mail subscription "Only" WE have about 51 mailing lists subscriptions from listproc. I need help just doing mailing lists. How to best go about this? I downloaded version for Solaris... (0 Replies)
Discussion started by: parente
0 Replies

8. Forum Support Area for Unregistered Users & Account Problems

Is mailing list supported.

Sir. I am intrested in joining of this forum. I want to know that is "Mailing List" is supported to send a query or not. Please reply. Rgds Sanju kumar (1 Reply)
Discussion started by: Sanju Kumar
1 Replies

9. Shell Programming and Scripting

How to create a dynamic list?

Hi falks, I need to write a function in k-shell which cd to root directory and ask the user which sub directory you want to tar. The user will select directories untill quit. How to do it? Thanks in advance, Nir (4 Replies)
Discussion started by: nir_s
4 Replies

10. UNIX for Advanced & Expert Users

Mailing list software?!?!?

HI all, I'm searching for mailing list software to install on my Linux RedHat 7.3 with Web interface if possible. Any suggestions??? Thank you all Regards. solvman (3 Replies)
Discussion started by: solvman
3 Replies
Login or Register to Ask a Question
CURLOPT_MAIL_RCPT(3)					     curl_easy_setopt options					      CURLOPT_MAIL_RCPT(3)

NAME
CURLOPT_MAIL_RCPT - list of SMTP mail recipients SYNOPSIS
#include <curl/curl.h> CURLcode curl_easy_setopt(CURL *handle, CURLOPT_MAIL_RCPT, struct curl_slist *rcpts); DESCRIPTION
Pass a pointer to a linked list of recipients to pass to the server in your SMTP mail request. The linked list should be a fully valid list of struct curl_slist structs properly filled in. Use curl_slist_append(3) to create the list and curl_slist_free_all(3) to clean up an entire list. When performing a mail transfer, each recipient should be specified within a pair of angled brackets (<>), however, should you not use an angled bracket as the first character libcurl will assume you provided a single email address and enclose that address within brackets for you. When performing an address verification (VRFY command), each recipient should be specified as the user name or user name and domain (as per Section 3.5 of RFC5321). When performing a mailing list expand (EXPN command), each recipient should be specified using the mailing list name, such as "Friends" or "London-Office". DEFAULT
NULL PROTOCOLS
SMTP EXAMPLE
TODO AVAILABILITY
Added in 7.20.0. The VRFY and EXPN logic was added in 7.34.0 RETURN VALUE
Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not. SEE ALSO
CURLOPT_MAIL_FROM(3), CURLOPT_MAIL_AUTH(3), libcurl 7.54.0 February 03, 2016 CURLOPT_MAIL_RCPT(3)