search for: 587

Displaying 20 results from an estimated 632 matches for "587".

Did you mean: 57
2017 Oct 09
8
Regular expression help
...quot; like a a/b a/b/c where there may be multiple words on a line (separated by spaces).? The a, b, and c strings can contain non-space, non-slash characters. I'd like to use gsub() to extract the c strings (which should be empty if there are none). A real example is "f 147/1315/587 2820/1320/587 3624/1321/587 1852/1322/587" which I'd like to transform to " 587 587 587 587" Another real example is "f 1067 28680 24462" which should transform to "?? ". I've tried a few different regexprs, but am unable to find a way to say "...
2017 Oct 09
0
Regular expression help
> x <- "f 147/1315/587 2820/1320/587 3624/1321/587 1852/1322/587" > gsub("(^| *)([^/ ]*/?){0,2}", "\\1", x) [1] " 587 587 587 587" > y <- "aa aa/ aa/bb aa/bb/ aa/bb/cc aa/bb/cc/ aa/bb/cc/dd aa/bb/cc/dd/" > gsub("(^| *)([^/ ]*/?){0,2}", "\\1", y)...
2017 Oct 09
1
Regular expression help
"(^| +)([^/ ]*/?){0,2}", with the first "*" replaced by "+" would be a bit better. Bill Dunlap TIBCO Software wdunlap tibco.com On Mon, Oct 9, 2017 at 8:50 AM, William Dunlap <wdunlap at tibco.com> wrote: > > x <- "f 147/1315/587 2820/1320/587 3624/1321/587 1852/1322/587" > > gsub("(^| *)([^/ ]*/?){0,2}", "\\1", x) > [1] " 587 587 587 587" > > y <- "aa aa/ aa/bb aa/bb/ aa/bb/cc aa/bb/cc/ aa/bb/cc/dd aa/bb/cc/dd/" > > gsub("(^| *)([^/ ]*/?){0,2}",...
2010 Mar 21
3
sendmail sending out on port 587
...d myself in a hotel that blocked port 25 which prevented my laptop's ability to connect to my office mail server. I did a scan on the internet and made the observation that this was a common problem. I had port 22 available so I was able to get my office server set up to accept mail on 25 and 587 without difficulty. The command "telnet mail.server.com 587" to my office mail server connects without difficulty. However, I have not been able to get sendmail on my laptop to connect to sendmail on my mail server at home using port 587. I have added the following to sendmail.mc o...
2017 Oct 09
0
Regular expression help
...ere there may be multiple words on a line (separated by spaces). The > a, b, and c strings can contain non-space, non-slash characters. I'd > like to use gsub() to extract the c strings (which should be empty if > there are none). > > A real example is > > "f 147/1315/587 2820/1320/587 3624/1321/587 1852/1322/587" > > which I'd like to transform to > > " 587 587 587 587" > > Another real example is > > "f 1067 28680 24462" > > which should transform to " ". > > I've tried a few differen...
2017 Oct 10
0
Regular expression help
How about this (I'm showing it as a pipe because it's easier to read that way): library(magrittr) "f 147/1315/587 2820/1320/587 3624/1321/587 1852/1322/587" %>% ? strsplit(' ') %>% ? unlist %>% ? sub('^[^/]*/*','',.) %>% ? sub('^[^/]*/*','',.) %>% ? paste(collapse = ' ') Georges Monette -- Georges Monette, PhD P.Stat.(SSC) | Associate...
2012 Dec 27
4
Help Getting Postfix relaying via Gmail
...DEB1410B3: message-id=< 20121227101536.8DEB1410B3 at hbc.hillcrest.org.nz> Dec 27 23:15:36 hbc postfix/qmgr[2589]: 8DEB1410B3: from=< root at hbc.hillcrest.org.nz>, size=317, nrcpt=1 (queue active) Dec 27 23:15:37 hbc postfix/smtp[2605]: connect to smtp.gmail.com[2607:f8b0:400e:c00::6d]:587: Network is unreachable Dec 27 23:15:37 hbc postfix/smtp[2605]: vstream_buf_get_ready: fd 15 got 45 Dec 27 23:15:37 hbc postfix/smtp[2605]: < smtp.gmail.com[173.194.79.109]:587: 220 mx.google.com ESMTP vo8sm17581810pbc.16 Dec 27 23:15:37 hbc postfix/smtp[2605]: > smtp.gmail.com[173.194.79.109...
2018 Jul 11
4
Connection refused (61)
what does the output of: netstat -n | grep :587 run as root, show you? the -p will give the program and pid. > Date: Wednesday, July 11, 2018 21:51:09 +0000 > From: Larry Rosenman <larryrtx at gmail.com> > > Yep, you (probably) need to configure openSMTPD to listen on 587 > > (I run exim, so I can't help with tha...
2018 Jul 11
2
Connection refused (61)
...omain.tld key "/etc/smtpd/tls/smtpd.key" table creds "/etc/smtpd/creds" table vdoms "/etc/smtpd/vdoms" table vusers "/etc/smtpd/vusers" listen on eth0 tls pki mx.domain.tld listen on eth0 port 587 tls-require pki mx.domain.tld auth <creds> accept from any for domain <vdoms> virtual <vusers> deliver to mbox accept for any relay ---- Add a: listen on lo port 587 tls-require pki mx.domain.tld auth <creds> -- Larry Rosenman http://www.lerctr.org/~...
2003 Jun 04
6
[Bug 587] ssh returns non-zero return code but appears to work
http://bugzilla.mindrot.org/show_bug.cgi?id=587 Summary: ssh returns non-zero return code but appears to work Product: Portable OpenSSH Version: -current Platform: All OS/Version: AIX Status: NEW Severity: normal Priority: P2 Component: ssh Assig...
2018 Jul 11
2
Connection refused (61)
...abbia Drive, Round Rock, TX 78665-2106 ?On 7/11/18, 5:26 PM, "Teno Deuter" <gvgter at googlemail.com> wrote: this is what I have now in my smptd conf file: listen on $egress_int pki server.pki tls-require hostname [domain] listen on $egress_int pki server.pki port 587 tls-require auth hostname [domain] listen on $egress_int pki server.pki smtps auth hostname [domain] but the problem is still there :( On Thu, Jul 12, 2018 at 12:04 AM, Larry Rosenman <larryrtx at gmail.com> wrote: > --- > /etc/smtpd/smtpd.conf > pki...
2014 Nov 26
3
2.2.15: SMTP submission server?
On 17/11/2014 07:23, Ron Leach wrote: > On 16/11/2014 07:24, Robert Schetterer wrote (re-ordered): >> Am 16.11.2014 um 02:24 schrieb Reindl Harald: >> >>> * if you find a security issue in postfix running >>> on 587 over TLS cry out loud > > I'm thinking beyond that; I want to get to the position that when > there is an issue in the MTA, our systems are less exposed than they > might otherwise be. It's not about the MTA. > >>> >>> that's it and if you think that...
2018 Jul 11
1
Connection refused (61)
obvious correction ... sorry. netstat -np | grep :587 > Date: Wednesday, July 11, 2018 21:57:31 +0000 > From: Richard <inbound-dovecot at listmail.innovate.net> > what does the output of: > > netstat -n | grep :587 > > run as root, show you? the -p will give the program and pid. > > > >> Date: Wedn...
2018 Jul 11
2
Connection refused (61)
...?On 7/11/18, 5:26 PM, "Teno Deuter" <gvgter at googlemail.com> wrote: > > this is what I have now in my smptd conf file: > > listen on $egress_int pki server.pki tls-require hostname [domain] > listen on $egress_int pki server.pki port 587 tls-require auth hostname [domain] > listen on $egress_int pki server.pki smtps auth hostname [domain] > > but the problem is still there :( > > On Thu, Jul 12, 2018 at 12:04 AM, Larry Rosenman <larryrtx at gmail.com> wrote: > > ---...
2011 Jun 25
3
sendmail - smtp security/authentication & port 587 issues
...s and copy relevant IP addresses to the /etc/mail/access file that would be regenerated every 5 minutes via cron. Once the IP address was in the /etc/mail/access.db a user could be authenticated and be allowed to send email using the machine as smtp. Is there a better way of doing this? Port 587 issues: Verizon DSL filters out requests on port 25 to smtp servers not belonging to verizon.net. An alternative is to use port 587 for smtp purposes. Are there any views in this CentOs user community on this? Much thanks. Max Pyziur pyz at brama.com
2018 Jul 11
2
Connection refused (61)
...; <gvgter at googlemail.com> wrote: > > > > this is what I have now in my smptd conf file: > > > > listen on $egress_int pki server.pki tls-require hostname [domain] > > listen on $egress_int pki server.pki port 587 tls-require auth hostname [domain] > > listen on $egress_int pki server.pki smtps auth hostname [domain] > > > > but the problem is still there :( > > > > On Thu, Jul 12, 2018 at 12:04 AM, Larry Rosenman <larryrtx...
2018 Jul 11
4
Connection refused (61)
I am using OpenSMTPD. The OpenBSD 6.3 default one. Also, when telnet to 127.0.0.1 25 I get a response! So must be something with 587? On Wed, Jul 11, 2018 at 11:47 PM, Larry Rosenman <larryrtx at gmail.com> wrote: > What's your neomutt connecting to? > > For smtp? > > -- > Larry Rosenman http://www.lerctr.org/~ler > Phone: +1 214-642-9640 E-Mail: larryrtx at gmail.c...
2004 Oct 06
9
Problem with local email after shorewall installation
...ay, pri=30057, relay=[127.0.0\.1] [127.0.0.1], dsn=4.0.0, stat=Deferred: Connection refused by [127.0.0.1] And the section of the syslog Oct 5 22:02:05 dibbler kernel: Shorewall:all2all:REJECT:IN= OUT=lo SRC=127.0.0.1 DST=127.0.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=7 DF PROTO=TCP SPT=32819 DPT=587 WINDOW=32767 RES=0x00 SYN URGP=0 Oct 5 22:02:05 dibbler kernel: Shorewall:all2all:REJECT:IN= OUT=lo SRC=127.0.0.1 DST=127.0.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=7 DF PROTO=TCP SPT=32819 DPT=587 WINDOW=32767 RES=0x00 SYN URGP=0 Oct 5 22:02:05 dibbler kernel: Shorewall:all2all:REJECT:IN= OUT=lo...
2005 Jul 22
0
CESA-2005:587 Important CentOS 4 ia64 mozilla - security update
CentOS Errata and Security Advisory 2005:587 https://rhn.redhat.com/errata/RHSA-2005-587.html The following updated files have been uploaded and are currently syncing to the mirrors: files: updates/ia64/RPMS/mozilla-1.7.10-1.4.1.centos4.ia64.rpm updates/ia64/RPMS/mozilla-chat-1.7.10-1.4.1.centos4.ia64.rpm updates/ia64/RPMS/mozilla-deve...
2005 Jul 23
0
CESA-2005:587 Important CentOS 4 x86_64 mozilla - security update
CentOS Errata and Security Advisory 2005:587 https://rhn.redhat.com/errata/RHSA-2005-587.html The following updated files have been uploaded and are currently syncing to the mirrors: x86_64: devhelp-0.9.2-2.4.6.x86_64.rpm devhelp-devel-0.9.2-2.4.6.x86_64.rpm mozilla-1.7.10-1.4.1.centos4.x86_64.rpm mozilla-chat-1.7.10-1.4.1.centos4.x86_64.r...