[pfx] LDAP map configuration

2023-06-29 Thread Joseph L. Casale via Postfix-users
I have main.cf configured with relay_recipient_maps = ldap:/etc/postfix/relay_recipients where relay_recipients contains a bind_dn and bind_pw entry. I need to manage the bind parameters in another process, is there any way to include a configuration file with just those two parameters within

[Python-Dev] Re: Problems building 3.7.13 on Windows

2022-05-16 Thread Joseph L. Casale
> I commented out line 182, and that allowed .\Tools\msibuild.bat to complete, > but that appears to leave the bundle named as "python-3.7.13.7804-amd64.exe"\ > and it did not include the msi files (the final size was 1269 Kb). After reading more documentation, I realized I needed to run

[Python-Dev] Problems building 3.7.13 on Windows

2022-05-15 Thread Joseph L. Casale
I am trying to build a full release of 3.7.13 with the Wix bundle on Windows. I have installed Visual Studio 2015 and included its bundled Windows 10 SDK. The SdkBinPath property in .\PCbuild\pyproject.props on line 182 seems to incorrectly set the path to: C:\Program Files (x86)\Windows

[CentOS] Cron and GNU parallel

2022-03-21 Thread Joseph L. Casale
I am using parallel-20190922-1 from epel and when I run a job in cron such as /usr/bin/parallel /usr/bin/bash ::: a.sh b.sh c.sh I don't receive any mail regardless of all three scripts generating output. All other jobs in cron generate mail if they write to stdout or stderr. When the above is

Re: Problems with caching server that forwards to an internal split-brain authoritative server

2022-03-11 Thread Joseph L. Casale
On Thu, Mar 10, 2022 at 7:48 PM Mark Andrews wrote: > > To answer your question about what you are overlooking the answer is “DNSSEC”. Thank you for the detailed response Mark. -- Visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe from this list ISC funds the development

Problems with caching server that forwards to an internal split-brain authoritative server

2022-03-10 Thread Joseph L. Casale
I am trying to replicate a working configuration on an older host that has a caching server that forwards to an Active Directory DNS server at 172.18.0.2 that is part of a split-brain setup with a public copy of its zone hosted with Goggle. When I attempt to resolve a record on the new caching

[jira] [Commented] (GUACAMOLE-536) Add support for arbitrary LDAP bind patterns

2022-01-21 Thread Joseph L. Casale (Jira)
[ https://issues.apache.org/jira/browse/GUACAMOLE-536?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17480332#comment-17480332 ] Joseph L. Casale commented on GUACAMOLE-536: Hi Mike, As per the docs for {*}ldap-user

RE: Script profiling details

2022-01-11 Thread Joseph L. Casale
> You might try `py-spy`. That worked well, I started trying to get more data from the profile output with the stats module but didn't quite get there. Thank you everyone, jlc -- https://mail.python.org/mailman/listinfo/python-list

Script profiling details

2022-01-10 Thread Joseph L. Casale
I am trying to track down a slow script startup time. I have executed the script using `python -m cProfile -o profile /path/script.py` and read through the results, but the largest culprit only shows various built-ins. I expected this given the implementation, but I was hoping to get some finer

Re: [sqlalchemy] Common datetime call

2021-06-18 Thread Joseph L. Casale
On Fri, Jun 18, 2021 at 3:45 AM Simon King wrote: > On Fri, Jun 18, 2021 at 12:21 AM jca...@gmail.com > wrote: > > > > Hi, > > Does a means exist to generically call a local datetime func such that > it renders as SYSDATE in Oracle and GETDATE() in SQL Server? > > > > Thanks, > > jlc > > > > Do

RE: How to implement logging for an imported module?

2021-03-07 Thread Joseph L. Casale
> I couldn't find any information on how to implement logging in a library that > doesn't know the name of the application that uses it. How is that done? Hello, That's not how it works, it is the opposite. You need to know the name of its logger, and since you imported it, you do. Logging is

Overriding property types on instances from a library

2021-02-20 Thread Joseph L. Casale
I have some code that makes use of the typing module. This code creates several instances of objects it creates from a library that has some issues. For example, I have multiple list comps that iterate properties of those instance and the type checker fails with: Expected type

asyncio cancellation pattern

2020-12-28 Thread Joseph L. Casale
I've started writing some asyncio code in lieu of using threads and managing concurrency and primitives manually. Having spent a lot of time using c#'s async implementation, I am struggling to see an elegant pattern for implementing cancellation. With the necessity for the loop (that of which I

RE: pexpect with kadmin

2020-12-23 Thread Joseph L. Casale
> If you have windows 10 can you use Windows Subsystem for Linux (WSL) > to install one of the Linux distros and use that? Interesting idea, sadly I am too far past the deadline on this to go through the red tape needed to get that in place. Thanks, jlc --

pexpect with kadmin

2020-12-22 Thread Joseph L. Casale
Anyone ever used pexpect with tooling like kadmin and have insight into how to manage interacting with it? After setting up debug logging, I was able to adjust the expect usage to get the input and output logs to at least appear correct when setting a password for a principal, however even with a

RE: setuptools issue

2020-12-17 Thread Joseph L. Casale
> Installed on this Slackware-14.2/x86_64 workstation with python-3.9.1 are: > python-setuptools-22.0.5-x86_64-1 I just ran into this recently, I don't recall the actual source but it was the version of setuptools having been so old. Your version is from Jun 3, 2016... Update it, that was what

RE: Python Client Rest API Invocation - POST with empty body - Invalid character found in method name [{}POST]. HTTP method names must be tokens

2020-11-20 Thread Joseph L. Casale
> Invalid character found in method name [{}POST]. HTTP method names must be > tokens. /snip > I could see in from wireshark dumps it looked like - {}POST > HTTP/1.1 The error message and your own debugging indicate the error. Your method *name* is {}POST, you have somehow included two

Re: [CentOS] Centos 8 and logwatch

2020-11-13 Thread Joseph L. Casale
> I am trying to get logwatch working on CentOS 8. System is fully updated. > Usually install minimal version and then add only necessary with yum. > > On CentOS 7: install logwatch and get daily logwatch report on mail. > > On CentOS 8: install logwatch but no way to get mail. Looks like

Constructing mime image attachment

2020-05-28 Thread Joseph L. Casale
I have some json encoded input for nodemailer (https://nodemailer.com/message/embedded-images) where the path key is a string value which contains the base64 encoded data such as: { html: 'Embedded image: ', attachments: [{ filename: 'image.png', path:

policy based variable composition

2020-04-03 Thread Joseph L. Casale
I am looking to replace a home built solution which allows a program to derive a series of variable values through configuration or policy. The existing facility allows dependences so one of the requested variables can depend on another, they are ordered and computed. It also allows callbacks so

RE: Class initialization with multiple inheritance

2019-07-20 Thread Joseph L. Casale
-Original Message- From: Barry Scott Sent: Tuesday, July 16, 2019 11:53 AM To: Joseph L. Casale Cc: python-list@python.org Subject: Re: Class initialization with multiple inheritance > And here is the MRO for LeftAndRight. > > >>> import m > LeftAndRight.__ini

Class initialization with multiple inheritance

2019-07-15 Thread Joseph L. Casale
I am trying to find explicit documentation on the initialization logic for a Base class when multiple exist. For the example in the documentation at https://docs.python.org/3/tutorial/classes.html#multiple-inheritance, if Base1 and Base2 both themselves inherited from the same base class, only

Type hinting

2019-04-08 Thread Joseph L. Casale
Hi, Is it possible to associate combinations of types for a given signature, for example: T = TypeVar('T', Foo, Bar, Baz) S = TypeVar('S', FooState, BarState, BazState) closure = 'populated dynamically' def foo(factory: Callable[[List[T], str], None], state: S) -> List[T]: results = []

RE: asyncio Question

2019-03-15 Thread Joseph L. Casale
> -Original Message- > From: Python-list bounces+jcasale=activenetwerx@python.org> On Behalf Of Simon > Connah > Sent: Thursday, March 14, 2019 3:03 AM > To: Python > Subject: asyncio Question > > Hi, > > Hopefully this isn't a stupid question. For the record I am using Python >

Re: [sqlite] Grouping guidance

2018-12-13 Thread Joseph L. Casale
-Original Message- From: sqlite-users On Behalf Of Roman Fleysher Sent: Thursday, December 13, 2018 2:29 PM To: SQLite mailing list Subject: Re: [sqlite] Grouping guidance > Hypothesis can never be proven. It can only be rejected with data > contradicting it at hand. > > "..the

Re: [sqlite] Grouping guidance

2018-12-13 Thread Joseph L. Casale
-Original Message- From: sqlite-users On Behalf Of Igor Tandetnik Sent: Thursday, December 13, 2018 12:16 PM To: sqlite-users@mailinglists.sqlite.org Subject: Re: [sqlite] Grouping guidance > select Request from MyTable group by Request having count(distinct > Description) = 2 Nice, I

[sqlite] Grouping guidance

2018-12-13 Thread Joseph L. Casale
Hi, I have data that resembles the following: Request NumberDescription REQ0090887 TASK0236753 Foo REQ0090887 TASK0234920 Bar REQ0090887 TASK0234921 Bar REQ0090887 TASK0237261 Foo REQ0086880 TASK0224045 Foo REQ0086903 TASK0224555 Bar REQ0086990 TASK0223977 Bar

RE: Serializing complex objects

2018-09-21 Thread Joseph L. Casale
-Original Message- From: Python-list On Behalf Of Rhodri James Sent: Friday, September 21, 2018 11:39 AM To: python-list@python.org Subject: Re: Serializing complex objects > Depending on what exactly your situation is, you may be able to use the > pickle module (in the standard library)

Serializing complex objects

2018-09-21 Thread Joseph L. Casale
I need to serialize a deep graph only for the purposes of visualizing it to observe primitive data types on properties throughout the hierarchy. In my scenario, I cannot attach a debugger to the process which would be most useful. Using json is not the easiest as I need to chase endless custom

RE: lxml namespace as an attribute

2018-08-15 Thread Joseph L. Casale
-Original Message- From: Python-list On Behalf Of Skip Montanaro Sent: Wednesday, August 15, 2018 3:26 PM To: Python Subject: lxml namespace as an attribute > Much of XML makes no sense to me. Namespaces are one thing. If I'm > parsing a document where namespaces are defined at the top

[issue34006] Windows HTML Help (chm) has fixed line length

2018-07-02 Thread Joseph L. Casale
Change by Joseph L. Casale : -- nosy: -jcasale ___ Python tracker <https://bugs.python.org/issue34006> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34006] Windows HTML Help (chm) has fixed line length

2018-06-30 Thread Joseph L. Casale
Change by Joseph L. Casale : -- nosy: +jcasale ___ Python tracker <https://bugs.python.org/issue34006> ___ ___ Python-bugs-list mailing list Unsubscribe:

Re: Perform diff as exact line match

2018-06-29 Thread Joseph L. Casale
On Friday, June 29, 2018 at 10:55:25 AM UTC-6, Gary Johnson wrote: > There's also sdiff: > > sdiff file1 file2 | less > > or > > sdiff file1 file2 | vim - That worked brilliantly! Thanks. -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply

Re: Perform diff as exact line match

2018-06-29 Thread Joseph L. Casale
On Friday, June 29, 2018 at 8:57:45 AM UTC-6, Gary Johnson wrote: > I _think_ I understand what you want, but I don't know of a way to > make Vim's internal comparison algorithm do that. > > Either of these two Linux commands will generate an output of only > the lines common to file1 and file2,

Re: Perform diff as exact line match

2018-06-29 Thread Joseph L. Casale
On Thursday, June 28, 2018 at 7:46:51 PM UTC-6, Tony Mechelynck wrote: > No plugin required, provided that you have a Vim compiled with +diff > and that the diff utility is installed and can be found on your $PATH. > > See ":help diff.txt" Hi Tony, Specifically, I need to match lines completely

Perform diff as exact line match

2018-06-28 Thread Joseph L. Casale
Does a means or plugin exist to perform a diff between two tabs/files that compares entire lines? Thanks. -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit

Re: [sqlite] Selecting with distinct on across two columns

2018-06-09 Thread Joseph L. Casale
-Original Message- From: sqlite-users On Behalf Of R Smith Sent: Saturday, June 9, 2018 6:04 PM To: sqlite-users@mailinglists.sqlite.org Subject: Re: [sqlite] Selecting with distinct on across two columns > DISTINCT is nothing more than a GROUP BY for the entire SELECT list. Brilliant,

[sqlite] Selecting with distinct on across two columns

2018-06-09 Thread Joseph L. Casale
I have a table where I need to select all distinct records from two columns and include a third that varies. It is possible that for multiple records where the first and second columns are equivalent, the third varies so it cannot be used in the distinct clause. In this case, I want to select the

[users@httpd] programmatic control of paths to site

2018-04-29 Thread Joseph L. Casale
I have an apache virtual server that proxies requests to a local service. I need to programmatically deny access to various child paths during certain local maintenance operations. Rather than create discrete instances for each child path that I could stop, is there a more elegant solution to

RE: Issue with python365.chm on window 7

2018-04-24 Thread Joseph L. Casale
From: Brian Gibbemeyer <bgibb...@us.ibm.com> Sent: Tuesday, April 24, 2018 12:36 PM To: Joseph L. Casale <jcas...@activenetwerx.com> Cc: python-list@python.org Subject: RE: Issue with python365.chm on window 7 > I right clicked on the file, no option to unblock. Sorry, ch

RE: Issue with python365.chm on window 7

2018-04-24 Thread Joseph L. Casale
-Original Message- From: Python-list On Behalf Of Brian Gibbemeyer Sent: Tuesday, April 24, 2018 11:01 AM To: Ethan Furman Cc: python-list@python.org Subject: Re: Issue with python365.chm on window 7 > The file at >

Re: Instance variables question

2018-04-16 Thread Joseph L. Casale
From: Python-list on behalf of Irv Kalb Sent: Monday, April 16, 2018 10:03 AM To: python-list@python.org Subject: Instance variables question   > class PartyAnimal(): >     x = 0 > >     def party(self): >    

[jira] [Commented] (GUACAMOLE-540) Discrepancy with remote_host between tables

2018-04-14 Thread Joseph L. Casale (JIRA)
[ https://issues.apache.org/jira/browse/GUACAMOLE-540?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16438518#comment-16438518 ] Joseph L. Casale commented on GUACAMOLE-540: Ok, built a new war from git without change

[jira] [Commented] (GUACAMOLE-540) Discrepancy with remote_host between tables

2018-04-14 Thread Joseph L. Casale (JIRA)
[ https://issues.apache.org/jira/browse/GUACAMOLE-540?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16438469#comment-16438469 ] Joseph L. Casale commented on GUACAMOLE-540: Oops, sorry... guacd 0.9.13-incubating

RE: Python regex pattern from array of hex chars

2018-04-13 Thread Joseph L. Casale
-Original Message- From: Python-list On Behalf Of MRAB Sent: Friday, April 13, 2018 12:05 PM To: python-list@python.org Subject: Re: Python regex pattern from array of hex chars > Use re.escape: > > regex = re.compile('[^{}]+'.format(re.escape(''.join(c for c in > character_class

Python regex pattern from array of hex chars

2018-04-13 Thread Joseph L. Casale
I have an array of hex chars which designate required characters. and one happens to be \x5C or "\". What foo is required to build the pattern to exclude all but: regex = re.compile('[^{}]+'.format(''.join(c for c in character_class))) I would use that in a re.sub to collapse and replace all but

[jira] [Created] (GUACAMOLE-540) Discrepancy with remote_host between tables

2018-04-11 Thread Joseph L. Casale (JIRA)
Joseph L. Casale created GUACAMOLE-540: -- Summary: Discrepancy with remote_host between tables Key: GUACAMOLE-540 URL: https://issues.apache.org/jira/browse/GUACAMOLE-540 Project: Guacamole

RE: Transferring files with RDP connections

2018-04-11 Thread Joseph L. Casale
-Original Message- From: Joseph L. Casale <jcas...@activenetwerx.com> Sent: Monday, April 9, 2018 12:41 PM To: 'user@guacamole.apache.org' <user@guacamole.apache.org> Subject: Transferring files with RDP connections > Any ideas what I may be missing? For the sake

RE: Remote IP history variation between tables

2018-04-11 Thread Joseph L. Casale
From: Nick Couchman Sent: Tuesday, April 10, 2018 6:35 AM To: user@guacamole.apache.org Subject: Re: Remote IP history variation between tables > I need to take a look at the code and see where each of them comes > from and if we can reconcile the two to a state that makes

RE: change of ip address

2018-04-10 Thread Joseph L. Casale
-Original Message- From: mdbarber <md...@aol.com> Sent: Tuesday, April 10, 2018 3:45 AM To: Joseph L. Casale <jcas...@activenetwerx.com> Subject: Re: change of ip address > the guacd.conf and guacamole properties confirm the pointers are to > "localhost&quo

RE: change of ip address

2018-04-10 Thread Joseph L. Casale
-Original Message- From: mdbarber Sent: Tuesday, April 10, 2018 3:25 AM To: user@guacamole.apache.org Subject: change of ip address > not sure where to start but will keep it short here, can add more detail > if required. > initial setup of ubuntu in a VM with dhcp, most

Transferring files with RDP connections

2018-04-09 Thread Joseph L. Casale
When transferring files with my RDP connections, I can successfully upload a file and retrieve it remotely from within the tsclient mapped drive, however when I try to download a file from with the clients UI, nothing happens when I double click it. With Chrome, when I close the connection, I am

Remote IP history variation between tables

2018-04-07 Thread Joseph L. Casale
I have apache proxying into tomcat on the same server, I notice that guacamole_connection_history.remote_host shows the actual client address however guacamole_user_history.remote_host shows localhost unless connecting to tomcat directly. Is this variation something I can address in my apache

RE: Guacadmin user attempts to open another users connection

2018-04-06 Thread Joseph L. Casale
From: Mike Jumper Sent: Friday, April 6, 2018 11:25 AM To: user@guacamole.apache.org Subject: Re: Guacadmin user attempts to open another users connection > Nothing you did wrong, but a behavioral quirk that was recently addressed: > >

Guacadmin user attempts to open another users connection

2018-04-06 Thread Joseph L. Casale
I have just setup the LDAP extension for auth and PGSQL for connection configuration. After setting up another user and configuring a single connection for that user, now when guacadmin logs in, it attempts to open the single connection for the new regular user? Any idea what I have configured

[jira] [Created] (GUACAMOLE-536) Enhance restrictive LDAP authentication configuration requirements

2018-04-05 Thread Joseph L. Casale (JIRA)
Joseph L. Casale created GUACAMOLE-536: -- Summary: Enhance restrictive LDAP authentication configuration requirements Key: GUACAMOLE-536 URL: https://issues.apache.org/jira/browse/GUACAMOLE-536

Re: Wrong permissions on undo file for Windows x64 v8.0.1655

2018-04-04 Thread Joseph L. Casale
On Wednesday, April 4, 2018 at 2:40:54 PM UTC-6, Bram Moolenaar wrote: > > SIDs such as S-1-22-1-990 and S-1-22-2-988 respectively. > > > > Editing a local file does not trigger the behavior. > > > > If I can provide any additional details, just let me know. > > Hmm, is this really a problem

Re: LDAP restrictions

2018-04-04 Thread Joseph L. Casale
From: Nick Couchman Sent: Wednesday, April 4, 2018 3:52 PM To: user@guacamole.apache.org Subject: Re: LDAP restrictions > Okay, I'm missing what "flat hierarchy" has to do with anything, here? > Either way, you still need a user account capable of searching for the > users (or

LDAP restrictions

2018-04-04 Thread Joseph L. Casale
I do not have a flat hierarchy where users will be located and as a result I would need a bind account which I cannot use as a result of the unsecure password. Some directories facilitate binds against a consistent format string such as @domain.com or DOMAIN\ after which point the dn and

RE: Accommodating NLA without preconfigured credentials

2018-04-04 Thread Joseph L. Casale
-Original Message- From: Mike Jumper Sent: Wednesday, April 4, 2018 10:10 AM To: user@guacamole.apache.org Subject: Re: Accommodating NLA without preconfigured credentials > If the credentials for Guacamole are identical to those used for > Windows (due to

Re: Wrong permissions on undo file for Windows x64 v8.0.1655

2018-04-03 Thread Joseph L. Casale
On Tuesday, April 3, 2018 at 4:50:40 AM UTC-6, Bram Moolenaar wrote: > You will have to give more information, I have no idea what you are > talking about. Hi Bram, I have narrowed this down a bit, when editing a file on a Samba share mapped to a Windows drive such as s:\foo, the resulting

Wrong permissions on undo file for Windows x64 v8.0.1655

2018-04-01 Thread Joseph L. Casale
Seems the permissions are wrong and mapped to unknown sids in this release. I am not even sure what repo this should filed against? -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit

RE: issues when buidling python3.* on centos 7

2018-03-26 Thread Joseph L. Casale
-Original Message- From: Python-list On Behalf Of joseph pareti Sent: Sunday, March 25, 2018 10:15 AM To: python-list@python.org Subject: issues when buidling python3.* on centos 7 > The following may give a clue because of inconsistent python versions: > > [joepareti54@xxx ~]$ python

Re: Context manager on method call from class

2018-03-15 Thread Joseph L. Casale
From: Python-list on behalf of Rob Gaddi Sent: Thursday, March 15, 2018 12:47 PM To: python-list@python.org Subject: Re: Context manager on method call from class   > from contextlib import

Context manager on method call from class

2018-03-15 Thread Joseph L. Casale
I have a class which implements a context manager, its __init__ has a signature and the __enter__ returns an instance of the class. Along with several methods which implement functionality on the instance, I have one method which itself must open a context manager against a call on an instance

Re: Unexpected behavior of HOME value

2018-03-12 Thread Joseph L. Casale
> Does anybody have an idea what could be different on this one system that > I could check? The system in question is a laptop and the behavior works as expected when the laptop is connected to the domain, however it breaks when not. Starting a vpn session when remote brings the behavior back to

Unexpected behavior of HOME value

2018-03-12 Thread Joseph L. Casale
Looking at /etc/profile, I see the following: # Here is how HOME is set, in order of priority, when starting from Windows # 1) From existing HOME in the Windows environment, translated to a Posix path # 2) from /etc/passwd, if there is an entry with a non empty directory field # 3)

Re: [CentOS] NIC naming conventions and vmware

2018-03-07 Thread Joseph L. Casale
-Original Message- From: CentOS On Behalf Of John Ratliff Sent: Wednesday, March 7, 2018 1:31 PM To: CentOS Subject: [CentOS] NIC naming conventions and vmware > I have a couple of CentOS 7 machines running in a vmware environment. On > all

Re: [pfSense] Configs or hardware?

2018-02-15 Thread Joseph L. Casale
-Original Message- From: List [mailto:list-boun...@lists.pfsense.org] On Behalf Of Kyle Marek Sent: Thursday, February 15, 2018 10:38 AM To: pfSense Support and Discussion Mailing List ; Eero Volotinen Subject: Re: [pfSense] Configs or

Re: [pfSense] Port forwards don't work on one machine

2018-02-12 Thread Joseph L. Casale
-Original Message- From: List [mailto:list-boun...@lists.pfsense.org] On Behalf Of Marco Sent: Sunday, February 11, 2018 2:30 PM To: list@lists.pfsense.org Subject: Re: [pfSense] Port forwards don't work on one machine > I ran a wireshark on the destination and it received packets when >

Re: [pfSense] Port forwards don't work on one machine

2018-02-11 Thread Joseph L. Casale
-Original Message- From: List [mailto:list-boun...@lists.pfsense.org] On Behalf Of Marco Sent: Sunday, February 11, 2018 2:30 PM To: list@lists.pfsense.org Subject: Re: [pfSense] Port forwards don't work on one machine > I ran a wireshark on the destination and it received packets when >

Re: [pfSense] Port forwards don't work on one machine

2018-02-11 Thread Joseph L. Casale
-Original Message- From: List [mailto:list-boun...@lists.pfsense.org] On Behalf Of Chris L Sent: Sunday, February 11, 2018 1:43 PM To: pfSense Support and Discussion Mailing List Subject: Re: [pfSense] Port forwards don't work on one machine > What interface is

Re: [CentOS] shutdown or poweroff?

2018-02-04 Thread Joseph L. Casale
-Original Message- From: CentOS [mailto:centos-boun...@centos.org] On Behalf Of Walter H. Sent: Sunday, February 4, 2018 9:03 AM To: centos@centos.org Subject: [CentOS] shutdown or poweroff? > just a simple question, my router has CentOS 6 with the apcupsd running, > in the log of >

RE: [NTSysADM] Scheduling updates on a DC via GPO isn't working

2018-01-26 Thread Joseph L. Casale
Been a while since I used only wsus, but what does the reboot policy say? Computer Configuration/Policies/Administrative Templates/Windows Components/Windows Update "No auto-restart..." > -Original Message- > From: listsad...@lists.myitforum.com > [mailto:listsad...@lists.myitforum.com]

RE: [NTSysADM] Server build recommendation

2018-01-26 Thread Joseph L. Casale
I'm not sure who told you that, I have several setups where the DNS server is on the esxi host, including the actual firewall which performs routing and provides all network access as well... > -Original Message- > From: listsad...@lists.myitforum.com >

RE: [NTSysADM] Server build recommendation

2018-01-25 Thread Joseph L. Casale
Big fan of HP equipment, but the moment you add anything to it, the price scales up brutally fast. And recent HP servers also throw a health warning when you don’t use marked up HP branded add-ons... I personally don't see this as an option for a small cost conscience shop. > -Original

RE: [NTSysADM] Using PS to query date of latest Windows Updates installed

2018-01-17 Thread Joseph L. Casale
> PS P:\software\PHA Scripts> Get-WULastResults > WARNING: To perform some operations you must run an elevated Windows > PowerShell console. > Get-WULastResults : Object reference not set to an instance of an object. /snip > So this cmdlet should return exactly what I am looking for, but for

RE: [NTSysADM] New blog post: Windows Speculative Execution Client/Server Patches/Mitigations/Detection Summary

2018-01-04 Thread Joseph L. Casale
Which article quantifies the performance degradation? From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On Behalf Of Ed Ziots Sent: Thursday, January 4, 2018 9:34 AM To: ntsysadm@lists.myitforum.com Subject: Re: [NTSysADM] New blog post: Windows Speculative Execution

[Exchange] RE: New blog post: December 2017 Quarterly Exchange Updates

2017-12-19 Thread Joseph L. Casale
don't trust me? :) https://blogs.technet.microsoft.com/exchange/2017/12/19/released-december-2017-quarterly-exchange-updates/ From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> [mailto:listsad...@lists.myitforum.com] On Behalf Of Joseph L. Casale Sent: Tuesday, Decem

[Exchange] RE: New blog post: December 2017 Quarterly Exchange Updates

2017-12-19 Thread Joseph L. Casale
No mention of the framework update in either the release notes or system requirements... Do you know where that is documented? Thanks for the update, jlc From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On Behalf Of Michael B. Smith Sent: Tuesday, December 19, 2017

Re: [CentOS] Offsite hosted backup solutions

2017-12-17 Thread Joseph L. Casale
-Original Message- From: CentOS [mailto:centos-boun...@centos.org] On Behalf Of Nicolas Kovacs Sent: Sunday, December 17, 2017 12:52 PM To: centos@centos.org Subject: Re: [CentOS] Offsite hosted backup solutions > Can't say about Windows clients, but for all my Linux machines, I'm > using

Re: [pfSense] pfsense crashing

2017-12-17 Thread Joseph L. Casale
-Original Message- From: List [mailto:list-boun...@lists.pfsense.org] On Behalf Of Eero Volotinen Sent: Sunday, December 17, 2017 11:02 AM To: pfSense Support and Discussion Mailing List Subject: Re: [pfSense] pfsense crashing > Need to test that tomorrow. Just

[CentOS] Offsite hosted backup solutions

2017-12-17 Thread Joseph L. Casale
Given all the vendors that provide this service with both Windows and Linux clients, Code42 is the only one I am aware of that supports sets. For me, this was essential to prioritize urgent data over low risk changes in the event a disaster occurs while a large directory is taking days to upload.

Re: [pfSense] pfsense crashing

2017-12-17 Thread Joseph L. Casale
-Original Message- From: List [mailto:list-boun...@lists.pfsense.org] On Behalf Of Eero Volotinen Sent: Sunday, December 17, 2017 5:28 AM To: pfSense Support and Discussion Mailing List Subject: [pfSense] pfsense crashing > After updating and restoring config to

[Exchange] RE: Auto reply email for a Domain name.

2017-12-04 Thread Joseph L. Casale
Transport rule with a regex... https://technet.microsoft.com/en-us/library/bb125138(v=exchg.160).aspx From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On Behalf Of Paul Cookman Sent: Monday, December 4, 2017 5:14 AM To: exchange@lists.myitforum.com Subject:

Re: [CentOS] Admins supporting both RHEL and CentOS

2017-11-29 Thread Joseph L. Casale
-Original Message- From: CentOS [mailto:centos-boun...@centos.org] On Behalf Of Sorin Srbu Sent: Wednesday, November 29, 2017 12:26 AM To: CentOS mailing list Subject: Re: [CentOS] Admins supporting both RHEL and CentOS > Seriously, some of the RHEL-boxes we use,

Re: [CentOS] Admins supporting both RHEL and CentOS

2017-11-29 Thread Joseph L. Casale
-Original Message- From: CentOS [mailto:centos-boun...@centos.org] On Behalf Of Peter Eckel Sent: Wednesday, November 29, 2017 5:21 AM To: CentOS mailing list Subject: Re: [CentOS] Admins supporting both RHEL and CentOS > While that may seem a bit strange insofar as

[CentOS] Admins supporting both RHEL and CentOS

2017-11-28 Thread Joseph L. Casale
on this list who support both? Thanks, Joseph L. Casale ___ CentOS mailing list CentOS@centos.org https://lists.centos.org/mailman/listinfo/centos

Re: [pfSense] pfsense openvpn speed?

2017-11-25 Thread Joseph L. Casale
-Original Message- From: List [mailto:list-boun...@lists.pfsense.org] On Behalf Of Eero Volotinen Sent: Saturday, November 25, 2017 5:35 AM To: pfSense Support and Discussion Mailing List Subject: [pfSense] pfsense openvpn speed? > We are running pfsense 2.3 on

Re: [CentOS] Creating Spec file for RPM

2017-11-23 Thread Joseph L. Casale
-Original Message- From: CentOS [mailto:centos-boun...@centos.org] On Behalf Of Andrew W Sent: Thursday, November 23, 2017 10:39 AM To: centos@centos.org Subject: [CentOS] Creating Spec file for RPM > Im trying to learn how to create RPMs but am a little confused by the > spec file. > >

Re: [CentOS] Strrange behavior of VirtualHosts in Apache (CentOS6)

2017-11-13 Thread Joseph L. Casale
-Original Message- From: CentOS [mailto:centos-boun...@centos.org] On Behalf Of Walter H. Sent: Monday, November 13, 2017 4:32 AM To: centos@centos.org Subject: [CentOS] Strrange behavior of VirtualHosts in Apache (CentOS6) > Hello, > > there is a short explanation about virtual hosts in

RE: [Exchange] RE: Outlook rules errors

2017-11-04 Thread Joseph L. Casale
vember 4, 2017 9:15 AM > To: exchange@lists.myitforum.com > Subject: Re: [Exchange] RE: Outlook rules errors > > But if it's a warning shouldn't I use WarningAction Stop? > > > On Nov 3, 2017, at 5:37 PM, Joseph L. Casale <jcas...@activenetwerx.com> > wrote: > &g

Re: Silent invocation of gvim on Windows

2017-11-03 Thread Joseph L. Casale
On Friday, November 3, 2017 at 1:49:18 PM UTC-6, Ben Fritz wrote: > > "-c", > > "\"%s/.*foo.*/bar/g | w\"", > Why gvim and not console vim? I don't know if it is the cause, but if you > must use gvim then on Linux and similar systems you need to also pass the > "-f" argument if you

[Exchange] RE: Outlook rules errors

2017-11-03 Thread Joseph L. Casale
ualifiedErrorId : PositionalParameterNotFound,Get-InboxRule > > From what I've read WarningAction uses the same options as ErrorAction. > > Paul > > -Original Message- > From: listsad...@lists.myitforum.com > [mailto:listsad...@lists.myitforum.com] On Behalf Of Joseph

Silent invocation of gvim on Windows

2017-11-01 Thread Joseph L. Casale
I have a use case where the optimal tool for my need is gvim as I don't have access to anything more suitable in the context. I am trying to invoke gvim as a process to perform a replacement (no shell or batch based invocation). The arguments I am passing (which are simply string joined with a

[Exchange] RE: Outlook rules errors

2017-11-01 Thread Joseph L. Casale
> P.S. - Another way to handle the OP's issue is with redirecting the warning > stream. > > https://blogs.technet.microsoft.com/heyscriptingguy/2014/03/30/understan > ding-streams-redirection-and-write-host-in-powershell/ > > -Original Message- > From: listsad...@lists.myitf

[Exchange] RE: Outlook rules errors

2017-11-01 Thread Joseph L. Casale
Sure, $i references a mailbox. That has the offending owner of the invalid rule. Here is a rule I require all code I work with to follow, otherwise it gets filed in G:) Always use `Set-StrictMode -Version Latest` For every cmdlet that exposes it, use the -ErrorLevel parameter and either

Re: [sqlite] ASP.NET MVC 5 Connection

2017-10-31 Thread Joseph L. Casale
-Original Message- From: sqlite-users [mailto:sqlite-users-boun...@mailinglists.sqlite.org] On Behalf Of Rahmat Ali Sent: Tuesday, October 31, 2017 2:17 PM To: SQLite mailing list Subject: Re: [sqlite] ASP.NET MVC 5 Connection > Yes I am using MVC 5

Re: [sqlite] ASP.NET MVC 5 Connection

2017-10-31 Thread Joseph L. Casale
-Original Message- From: sqlite-users [mailto:sqlite-users-boun...@mailinglists.sqlite.org] On Behalf Of Rahmat Ali Sent: Tuesday, October 31, 2017 10:43 AM To: sqlite-users@mailinglists.sqlite.org Subject: [sqlite] ASP.NET MVC 5 Connection > I am trying to attach SQLite with my MVC 5

Re: [CentOS] Areca RAID controller on latest CentOS 7 (1708 i.e. RHEL 7.4) kernel 3.10.0-693.2.2.el7.x86_64

2017-10-22 Thread Joseph L. Casale
-Original Message- From: CentOS [mailto:centos-boun...@centos.org] On Behalf Of Noam Bernstein Sent: Sunday, October 22, 2017 8:54 AM To: CentOS mailing list Subject: [CentOS] Areca RAID controller on latest CentOS 7 (1708 i.e. RHEL 7.4) kernel 3.10.0-693.2.2.el7.x86_64

  1   2   3   4   5   6   7   8   9   10   >