Searched refs:email (Results 1 - 20 of 20) sorted by relevance

/opensolaris-onvv-gate/usr/src/tools/scripts/
H A Dhgsetup.sh32 # * Populate the author/email fields to be correct
44 "usage: $prog [-f] [-c cdm_path] [-m merge_path] [-n name] [-e email] [-p proxy] [-s style_path]
49 -e email : override email (for email.from)
57 if on-SWAN, $prog will lookup your email address. this can be
66 e) email=$OPTARG;;
131 if [[ -z "$email" ]]; then
133 email=${email
[all...]
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/x509v3/
H A Dv3_utl.c80 static int append_ia5(STACK **sk, ASN1_IA5STRING *email);
503 ASN1_IA5STRING *email; local
506 /* Now add any email address(es) to STACK */
512 email = X509_NAME_ENTRY_get_data(ne);
513 if(!append_ia5(&ret, email)) return NULL;
529 static int append_ia5(STACK **sk, ASN1_IA5STRING *email) argument
533 if(email->type != V_ASN1_IA5STRING) return 1;
534 if(!email->data || !email->length) return 1;
538 if(sk_find(*sk, (char *)email
[all...]
H A Dv3_alt.c121 X509V3_add_value_uchar("email",gen->d.ia5->data, &ret);
191 BIO_printf(out, "email:%s",gen->d.ia5->data);
314 if(!name_cmp(cnf->name, "email") && cnf->value &&
317 } else if(!name_cmp(cnf->name, "email") && cnf->value &&
333 /* Copy any email addresses in a certificate or request to
340 ASN1_IA5STRING *email = NULL; local
354 /* Now add any email address(es) to STACK */
359 email = M_ASN1_IA5STRING_dup(X509_NAME_ENTRY_get_data(ne));
365 if(!email || !(gen = GENERAL_NAME_new())) {
369 gen->d.ia5 = email;
[all...]
/opensolaris-onvv-gate/usr/src/cmd/krb5/kwarn/
H A Dkwarnd_proc.c79 char *email; member in struct:config_entry_s
569 config_entry->email = strdup(emailid);
570 if (config_entry->email == NULL)
1023 ce->email);
1033 ce->email,
/opensolaris-onvv-gate/usr/src/cmd/cmd-crypto/pktool/
H A Dcommon.c936 char *email = NULL; local
952 email = get_input_string(EMAIL_PROMPT, NULL, RDN_MIN, RDN_MAX);
986 if (email != NULL) {
988 (void) strlcat(subname, email, SUBNAMESIZ);
1004 if (email)
1005 free(email);
/opensolaris-onvv-gate/usr/src/lib/libcommputil/common/
H A Dsdp_parse.c192 * email-fields (e=)
193 * *(%x65 "=" email-address CRLF)
194 * anything between "=" and "CRLF" is considered to be email-address
197 sdp_parse_email(sdp_list_t **email, const char *begin, const char *end, argument
223 if (*email == NULL) {
224 *email = new_email;
226 tmp = *email;
H A Dsdp.c380 * Adds email address field to the session.
381 * e=<email-address>
384 sdp_add_email(sdp_session_t *session, const char *email) argument
386 if (session == NULL || email == NULL || (strlen(email) == 0))
388 return (add_value_to_list(&session->s_email, email, strlen(email),
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/t/
H A Dhtmlview.t163 <p>This is an email link: <a href="mailto:mailto:foo@bar.com">mailto:foo@bar.com</a></p>
/opensolaris-onvv-gate/usr/src/common/openssl/apps/
H A Dx509.c106 " -email - print email address(es)\n",
181 int noout=0,sign_flag=0,CA_flag=0,CA_createserial=0,email=0; local
379 else if (strcmp(*argv,"-email") == 0)
380 email= ++num;
734 else if (email == i)
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Time/
H A DLocal.pm272 email list. See http://lists.perl.org/ for more details.
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/utils/
H A Dperlbug.PL1027 compose your own report, and email it to B<perlbug@perl.org>. You might
1124 the message yourself, add the output produced by C<perlbug -d> and email
1129 Whether you use C<perlbug> or send the email manually, please make
1192 File to output the results to instead of sending as an email. Useful
H A Dh2xs.PL1223 my ($email,$author,$licence);
1232 $email = "$username\@$domain";
1237 $email ||= 'a.u.thor@a.galaxy.far.far.away';
1346 #$author, E<lt>${email}E<gt>
1906 AUTHOR => '$author <$email>') : ()),
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DCPAN.pm3181 my($userid,$fullname,$email) =
3183 next unless $userid && $fullname && $email;
3187 $userobj->set('FULLNAME' => $fullname, 'EMAIL' => $email);
3563 my $email; # old perls!
3564 if ($email = $CPAN::META->instance("CPAN::Author",
3566 )->email) {
3567 $extra .= " <$email>";
3569 $extra .= " <no email>";
3629 $self->email);
3639 #-> sub CPAN::Author::email ;
3640 sub email { shift->{RO}{EMAIL}; } subroutine
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Net/
H A DSMTP.pm739 example an application might extract The From: line from an email
/opensolaris-onvv-gate/usr/src/cmd/cmd-inet/usr.sbin/in.ftpd/
H A Dftpd.c205 char *email(char *full_address);
1258 if (!strcasecmp(ARG1, "email")) {
2923 while (getaclentry("deny-email", &entry)) {
4641 if (Send(sck, "MAIL FROM: <%s>\r\n", email(mailfrom)) != 250) {
4646 if (Send(sck, "RCPT TO: <%s>\r\n", email(incmail[temp])) == 250)
7737 char *email(char *full_address)
7736 char *email(char *full_address) function
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/
H A DConcise.pm909 for text documentation or email. This is the default.
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/I18N/LangTags/
H A DList.pm210 FOR GENERAL USE>. For further guidance, email me.
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Tie/
H A DFile.pm2521 To contact the author, send email to: C<mjd-perl-tiefile+@plover.com>
2524 released, send a blank email message to
/opensolaris-onvv-gate/usr/src/grub/grub-0.97/docs/
H A Dtexinfo.tex1907 % So now @email is just like @uref, unless we are pdf.
1909 %\def\email#1{\angleleft{\tt #1}\angleright}
1911 \def\email#1{\doemail#1,,\finish}
1920 \let\email=\uref
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/
H A DMakeMaker.pm1299 String containing name (and email address) of package author(s). Is used

Completed in 305 milliseconds