[SCM] Samba Shared Repository - branch master updated

2024-01-04 Thread Björn Jacke
The branch, master has been updated
   via  1047abf3aa3 selftest: let list_servers.NT1 really use NT1 protocol
   via  5c2286ecf5c vfs_worm: add connect function to cache parameters
   via  e84437eae6a set_process_capability: log which capability was set or 
failed to be set
  from  7e0a18acde8 vfs_ceph: use extra 'ceph_*at()' calls when available

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 1047abf3aa352178c433051ede62353283513512
Author: Björn Jacke 
Date:   Thu Jan 4 12:55:53 2024 +0100

selftest: let list_servers.NT1 really use NT1 protocol

Signed-off-by: Bjoern Jacke 
Reviewed-by: Volker Lendecke 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Fri Jan  5 01:43:51 UTC 2024 on atb-devel-224

commit 5c2286ecf5c2ef5557dee4d5ec142a958c99b2ec
Author: Björn Jacke 
Date:   Sat Dec 30 19:53:36 2023 +0100

vfs_worm: add connect function to cache parameters

Signed-off-by: Bjoern Jacke 
Reviewed-by: Volker Lendecke 

commit e84437eae6a8356248cf7cc558903e86ead0eece
Author: Björn Jacke 
Date:   Sat Dec 30 18:28:59 2023 +0100

set_process_capability: log which capability was set or failed to be set

Signed-off-by: Bjoern Jacke 
Reviewed-by: Volker Lendecke 

---

Summary of changes:
 source3/lib/system.c   |  5 +++--
 source3/modules/vfs_worm.c | 44 ++--
 source3/selftest/tests.py  |  2 +-
 3 files changed, 46 insertions(+), 5 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/lib/system.c b/source3/lib/system.c
index bdaa723fd3c..721ffd17f88 100644
--- a/source3/lib/system.c
+++ b/source3/lib/system.c
@@ -627,11 +627,12 @@ static bool set_process_capability(enum smbd_capability 
capability,
cap_set_flag(cap, CAP_INHERITABLE, num_cap_vals, cap_vals, CAP_CLEAR);
 
if (cap_set_proc(cap) == -1) {
-   DEBUG(0, ("set_process_capability: cap_set_proc failed: %s\n",
-   strerror(errno)));
+   DBG_ERR("adding capability %d: cap_set_proc failed: %s\n",
+   capability, strerror(errno));
cap_free(cap);
return False;
}
+   DBG_INFO("added capability %d\n", capability);
 
cap_free(cap);
return True;
diff --git a/source3/modules/vfs_worm.c b/source3/modules/vfs_worm.c
index 833a0ac26fe..402705e96e6 100644
--- a/source3/modules/vfs_worm.c
+++ b/source3/modules/vfs_worm.c
@@ -22,6 +22,41 @@
 #include "system/filesys.h"
 #include "libcli/security/security.h"
 
+struct worm_config_data {
+   double grace_period;
+};
+
+static int vfs_worm_connect(struct vfs_handle_struct *handle,
+   const char *service, const char *user)
+{
+   struct worm_config_data *config = NULL;
+   int ret;
+
+   ret = SMB_VFS_NEXT_CONNECT(handle, service, user);
+   if (ret < 0) {
+   return ret;
+   }
+
+   if (IS_IPC(handle->conn) || IS_PRINT(handle->conn)) {
+   return 0;
+   }
+
+   config = talloc_zero(handle->conn, struct worm_config_data);
+   if (config == NULL) {
+   DBG_ERR("talloc_zero() failed\n");
+   errno = ENOMEM;
+   return -1;
+   }
+   config->grace_period = lp_parm_int(SNUM(handle->conn), "worm",
+   "grace_period", 3600);
+
+   SMB_VFS_HANDLE_SET_DATA(handle, config,
+   NULL, struct worm_config_data,
+   return -1);
+   return 0;
+
+}
+
 static NTSTATUS vfs_worm_create_file(vfs_handle_struct *handle,
 struct smb_request *req,
 struct files_struct *dirfsp,
@@ -48,12 +83,16 @@ static NTSTATUS vfs_worm_create_file(vfs_handle_struct 
*handle,
FILE_WRITE_ATTRIBUTES | DELETE_ACCESS |
WRITE_DAC_ACCESS | WRITE_OWNER_ACCESS;
NTSTATUS status;
+   struct worm_config_data *config = NULL;
+
+   SMB_VFS_HANDLE_GET_DATA(handle, config,
+   struct worm_config_data,
+   return NT_STATUS_INTERNAL_ERROR);
 
if (VALID_STAT(smb_fname->st)) {
double age;
age = timespec_elapsed(_fname->st.st_ex_ctime);
-   if (age > lp_parm_int(SNUM(handle->conn), "worm",
- "grace_period", 3600)) {
+   if (age > config->grace_period) {
readonly = true;
}
}
@@ -83,6 +122,7 @@ static NTSTATUS vfs_worm_create_file(vfs_hand

[SCM] Samba Shared Repository - branch master updated

2023-11-16 Thread Björn Jacke
The branch, master has been updated
   via  1edf9ecaf56 posix_acls.c: prefer capabilities over become_root
   via  b250f25fe40 open.c: prefer capabilities over become_root
   via  4227b011f6a vfs_recycle.c: prefer capabilities over become_root
   via  92278418dc8 vfs_posix_eadb.c: prefer capabilities over become_root
   via  62464bd2db2 vfs_default.c: prefer capabilities over become_root
   via  0e3836e3961 vfs_acl_xattr.c: prefer capabilities over become_root
   via  12734848dc9 vfs_acl_common.c: prefer capabilities over become_root
   via  06e5c1e32ea nfs4_acls.c: prefer capabilities over become_root
   via  944cb51506a token_util.c: prefer capabilities over become_root
   via  c1e2fbb1b9a dosmode.c: prefer use of capabilities at two places 
over become_root
   via  a1738e8265d system.c: fall back to become_root if CAP_DAC_OVERRIDE 
isn't usable
  from  4481a67c1b2 smbd: fix close order of base_fsp and stream_fsp in 
smb_fname_fsp_destructor()

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 1edf9ecaf56f3312e199e633bff0804243042e33
Author: Björn Jacke 
Date:   Fri Jun 17 07:28:01 2022 +0200

posix_acls.c: prefer capabilities over become_root

Signed-off-by: Bjoern Jacke 
Reviewed-by: Christof Schmitt 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Thu Nov 16 22:39:05 UTC 2023 on atb-devel-224

commit b250f25fe407f9a6269b804382de4854501f2d86
Author: Björn Jacke 
Date:   Fri Jun 17 07:27:38 2022 +0200

open.c: prefer capabilities over become_root

Signed-off-by: Bjoern Jacke 
Reviewed-by: Christof Schmitt 

commit 4227b011f6ada97a4cd72a440ed887ffdb3f219e
Author: Björn Jacke 
Date:   Fri Jun 17 07:26:53 2022 +0200

vfs_recycle.c: prefer capabilities over become_root

Signed-off-by: Bjoern Jacke 
Reviewed-by: Christof Schmitt 

commit 92278418dc885ed411f545e73c800ce93f858090
Author: Björn Jacke 
Date:   Fri Jun 17 07:26:30 2022 +0200

vfs_posix_eadb.c: prefer capabilities over become_root

Signed-off-by: Bjoern Jacke 
Reviewed-by: Christof Schmitt 

commit 62464bd2db2a95b1253364f4493bbb6770b73193
Author: Björn Jacke 
Date:   Fri Jun 17 07:26:02 2022 +0200

vfs_default.c: prefer capabilities over become_root

Signed-off-by: Bjoern Jacke 
Reviewed-by: Christof Schmitt 

commit 0e3836e3961f2b7c39173ce1023d3c92addef630
Author: Björn Jacke 
Date:   Fri Jun 17 07:25:37 2022 +0200

vfs_acl_xattr.c: prefer capabilities over become_root

Signed-off-by: Bjoern Jacke 
Reviewed-by: Christof Schmitt 

commit 12734848dc9901b932644139aaa7e3f78e55c8dc
Author: Björn Jacke 
Date:   Fri Jun 17 07:25:08 2022 +0200

vfs_acl_common.c: prefer capabilities over become_root

Signed-off-by: Bjoern Jacke 
Reviewed-by: Christof Schmitt 

commit 06e5c1e32ea7907523cc19f021225e7541e2075f
Author: Björn Jacke 
Date:   Fri Jun 17 07:24:28 2022 +0200

nfs4_acls.c: prefer capabilities over become_root

Signed-off-by: Bjoern Jacke 
Reviewed-by: Christof Schmitt 

commit 944cb51506a94084d7ab52ee044fe6f66e1aaeb9
Author: Björn Jacke 
Date:   Fri Jun 17 07:22:57 2022 +0200

token_util.c: prefer capabilities over become_root

Signed-off-by: Bjoern Jacke 
Reviewed-by: Christof Schmitt 

commit c1e2fbb1b9a7551becf5caa0f08d434edf9ad862
Author: Björn Jacke 
Date:   Fri Nov 10 09:58:43 2023 +0100

dosmode.c: prefer use of capabilities at two places over become_root

Signed-off-by: Bjoern Jacke 
Reviewed-by: Christof Schmitt 

commit a1738e8265dd256c5a1064482a6dfccbf9ca44f1
Author: Björn Jacke 
Date:   Thu Nov 9 14:56:06 2023 +0100

system.c: fall back to become_root if CAP_DAC_OVERRIDE isn't usable

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15093

Signed-off-by: Bjoern Jacke 
Reviewed-by: Christof Schmitt 

---

Summary of changes:
 source3/auth/token_util.c|  4 ++--
 source3/lib/system.c | 31 +--
 source3/modules/nfs4_acls.c  |  4 ++--
 source3/modules/vfs_acl_common.c |  8 
 source3/modules/vfs_acl_xattr.c  | 12 ++--
 source3/modules/vfs_default.c|  4 ++--
 source3/modules/vfs_posix_eadb.c |  4 ++--
 source3/modules/vfs_recycle.c|  4 ++--
 source3/smbd/dosmode.c   |  8 
 source3/smbd/open.c  | 12 ++--
 source3/smbd/posix_acls.c| 40 
 11 files changed, 79 insertions(+), 52 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/auth/token_util.c b/source3/auth/token_util.c
index 023ad7cbb02..a7ff9bd6c3f 100644
--- a/source3/auth/token_util.c
+++ b/source3/auth/token_util.c
@@ -699,7 +699,7 @@ NTSTATUS finalize_local_nt_token(struct security_token 
*result

[SCM] Samba Shared Repository - branch master updated

2023-11-15 Thread Björn Jacke
The branch, master has been updated
   via  12e5c15a97b vfs_zfsacl: Call stat CAP_DAC_OVERRIDE functions
   via  9cac9154212 vfs_aixacl2: Call stat DAC_CAP_OVERRIDE functions
   via  bffd8bd8c32 nfs4_acls: Make fstat_with_cap_dac_override static
   via  0f664f01620 nfs4_acls: Make stat_with_cap_dac_override static
   via  8831eeca1d7 nfs4_acls: Make fstatat_with_cap_dac_override static
   via  5fd73e93af9 vfs_gpfs: Move vfs_gpfs_fstatat to nfs4_acls.c and 
rename function
   via  2c1195678d3 vfs_gpfs: Move vfs_gpfs_lstat to nfs4_acls.c and rename 
function
   via  f9301871c61 vfs_gpfs: Move vfs_gpfs_fstat to nfs4_acls.c and rename 
function
   via  f8a23d960e0 vfs_gpfs: Move vfs_gpfs_stat to nfs4_acls.c and rename 
function
   via  6b1e066c4f3 vfs_gpfs: Move stat_with_capability to nfs4_acls.c and 
rename function
   via  316c96ea83a vfs_gpfs: Move fstatat_with_cap_dac_override to 
nfs4_acls.c
   via  05f1ee1ae2d nfs4_acls: Implement fstat with DAC_CAP_OVERRIDE
  from  9898ca65e93 docs-xml: Fix a usage for case sensitive parameter

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 12e5c15a97b45aa01fc3f4274f8ba9cf7d1ddbe9
Author: Christof Schmitt 
Date:   Thu Nov 9 12:44:02 2023 -0700

vfs_zfsacl: Call stat CAP_DAC_OVERRIDE functions

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15507

Signed-off-by: Christof Schmitt 
Reviewed-by: Björn Jacke 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Wed Nov 15 19:55:07 UTC 2023 on atb-devel-224

commit 9cac9154212bde79391ca99291a76752f334
Author: Christof Schmitt 
Date:   Thu Nov 9 12:42:13 2023 -0700

vfs_aixacl2: Call stat DAC_CAP_OVERRIDE functions

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15507

Signed-off-by: Christof Schmitt 
Reviewed-by: Björn Jacke 

commit bffd8bd8c32fea738824b807eb9e5f97a609493e
Author: Christof Schmitt 
Date:   Thu Nov 9 12:39:57 2023 -0700

nfs4_acls: Make fstat_with_cap_dac_override static

No other module is calling this function.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15507

Signed-off-by: Christof Schmitt 
Reviewed-by: Björn Jacke 

commit 0f664f016207894e0a156b9e1f4db7677c264205
Author: Christof Schmitt 
Date:   Thu Nov 9 12:38:46 2023 -0700

nfs4_acls: Make stat_with_cap_dac_override static

No other module is calling this function.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15507

Signed-off-by: Christof Schmitt 
Reviewed-by: Björn Jacke 

commit 8831eeca1d70c909e15c86c8af6a7b1d7b0d3b5b
Author: Christof Schmitt 
Date:   Thu Nov 9 12:37:25 2023 -0700

nfs4_acls: Make fstatat_with_cap_dac_override static

No other module is calling this function.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15507

Signed-off-by: Christof Schmitt 
Reviewed-by: Björn Jacke 

commit 5fd73e93af9d015c9e65a6d4d16229476a541cfc
Author: Christof Schmitt 
Date:   Thu Nov 9 12:35:21 2023 -0700

vfs_gpfs: Move vfs_gpfs_fstatat to nfs4_acls.c and rename function

All stat DAC_CAP_OVERRIDE code is being moved to nfs4_acls.c to allow
reuse. Move the vfs_gpfs_fstatat function and rename it to the more
generic name nfs4_acl_fstat.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15507

Signed-off-by: Christof Schmitt 
Reviewed-by: Björn Jacke 

commit 2c1195678d34516744ba4f8b1c5582f4046cba35
Author: Christof Schmitt 
Date:   Thu Nov 9 12:30:27 2023 -0700

vfs_gpfs: Move vfs_gpfs_lstat to nfs4_acls.c and rename function

All stat CAP_DAC_OVERRIDE code is being moved to nf4_acls.c to allow
reuse. Move the vfs_gpfs_lstat function and rename to the more generic
name nfs4_acl_lstat.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15507

Signed-off-by: Christof Schmitt 
Reviewed-by: Björn Jacke 

commit f9301871c61b066c1ea464e6e9109bb2cde71598
Author: Christof Schmitt 
Date:   Thu Nov 9 12:27:58 2023 -0700

vfs_gpfs: Move vfs_gpfs_fstat to nfs4_acls.c and rename function

All stat DAC_CAP_OVERRIDE code is moving to nfs4_acls.c to allow reuse.
Move the vfs_gpfs_fstat function and rename to the more generic name
nfs4_acl_fstat.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15507

Signed-off-by: Christof Schmitt 
Reviewed-by: Björn Jacke 

commit f8a23d960e02f783119c2aef38a6e293ee548df3
Author: Christof Schmitt 
Date:   Thu Nov 9 12:23:49 2023 -0700

vfs_gpfs: Move vfs_gpfs_stat to nfs4_acls.c and rename function

All stat DAC_CAP_OVERRIDE code is moving to nfs4_acls.c to allow reuse
by other file system modules. Also rename the function to the more
generic name nfs4_acl_stat.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15507

Signed-off-by: Christof Schmitt 
Reviewed

[SCM] Samba Shared Repository - branch master updated

2023-07-02 Thread Björn Jacke
The branch, master has been updated
   via  3119f6c283a wb_dsgetdcname: don't use stack variables for async code
   via  3b96ef92907 wb_dsgetdcname: log also the domain name for failures
   via  7475df4f87a wb_dsgetdcname.c: move common message to higher log 
level
   via  d6bee92ec5d wb_dsgetdcname.c: don't use statis log level numbers
   via  868db989805 tallocmsg.c: move info log message to appropriate level
   via  405e9ba5511 garbage_collect_tombstone.c: use DBG* macros instead of 
static numeric log levels
   via  e4bb8b3d0df garbage_collect_tombstones.c: move info log message to 
appropriate level
   via  bd87991c185 winbindd_cache.c: use DBG* macros instead of static log 
level numbers
   via  7395c114609 winbindd_cache.c: move some some notice messages from 
ERR to NOTICE level
   via  7f62b15cbda winbindd_cache: adjust some debug levels to more 
appropriate severities
  from  acd081a70d2 build: Remove unused check for SHA1_Update and 
SHA1_RENAME_NEEDED

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 3119f6c283ace04b7877be3738891bec27daf66c
Author: Stefan Metzmacher 
Date:   Thu Jun 29 14:02:17 2023 +0200

wb_dsgetdcname: don't use stack variables for async code

This is not really a problem because we call ndr_push from
with a _send() function, but still we leave dangling pointers
arround...

Signed-off-by: Stefan Metzmacher 
Reviewed-by: Björn Jacke 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Sun Jul  2 17:42:56 UTC 2023 on atb-devel-224

commit 3b96ef9290737ea638b1878361c6190b7fa24a4b
Author: Björn Jacke 
Date:   Thu Jun 29 13:51:46 2023 +0200

wb_dsgetdcname: log also the domain name for failures

Signed-off-by: Björn Jacke 
Reviewed-by: Stefan Metzmacher 

commit 7475df4f87a5061e84fec67702848d5a87f451e9
Author: Björn Jacke 
Date:   Wed Jun 28 13:56:53 2023 +0200

wb_dsgetdcname.c: move common message to higher log level

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

commit d6bee92ec5d599c7ae7a9a99b2a6a4720cdd024d
Author: Björn Jacke 
Date:   Wed Jun 28 13:51:35 2023 +0200

wb_dsgetdcname.c: don't use statis log level numbers

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

commit 868db989805932bf49d0c0fbd01eae09f6393da9
Author: Björn Jacke 
Date:   Wed Jun 28 13:24:50 2023 +0200

tallocmsg.c: move info log message to appropriate level

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

commit 405e9ba551148aadc5a368ba94bc8784e566d3a3
Author: Björn Jacke 
Date:   Wed Jun 28 13:12:17 2023 +0200

garbage_collect_tombstone.c: use DBG* macros instead of static numeric log 
levels

Some log levels changed slightly because the macros don't cover all the
previously used levels.

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

commit e4bb8b3d0df7d45db19b1424164f53c584c0cebf
Author: Björn Jacke 
Date:   Wed Jun 28 12:55:35 2023 +0200

garbage_collect_tombstones.c: move info log message to appropriate level

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

commit bd87991c1859fa35f3265082ba73a75a622f2dfd
Author: Björn Jacke 
Date:   Wed Jun 28 12:34:26 2023 +0200

winbindd_cache.c: use DBG* macros instead of static log level numbers

Some log levels changed slightly because the macros don't cover all the
previously used levels.

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

commit 7395c1146094d9eb2a8cf33445aa668c3079e889
Author: Björn Jacke 
Date:   Wed Jun 28 12:00:49 2023 +0200

winbindd_cache.c: move some some notice messages from ERR to NOTICE level

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

commit 7f62b15cbdad52956c95aa6630bd95c49f65c1f7
Author: Björn Jacke 
Date:   Wed Jun 28 11:52:32 2023 +0200

winbindd_cache: adjust some debug levels to more appropriate severities

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

---

Summary of changes:
 source3/lib/tallocmsg.c   |   2 +-
 source3/winbindd/wb_dsgetdcname.c |  23 +-
 source3/winbindd/winbindd_cache.c | 437 +-
 source4/dsdb/kcc/garbage_collect_tombstones.c |  28 +-
 4 files changed, 250 insertions(+), 240 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/lib/tallocmsg.c b/source3/lib/tallocmsg.c
index e8a69afbf80..af5a90bb434 100644
--- a/source3/lib/tallocmsg.c
+++ b/source3/lib/tallocmsg.c
@@ -81,5 +81,5 @@ void register_msg_pool_usage(
DBG_WARNING("messaging_filtered_read_send failed\n");
return;
}
-   DEBUG(2, ("Registered MSG_REQ_POOL_USAGE\n"));
+   

[SCM] Samba Website Repository - branch master updated

2023-01-27 Thread Björn Jacke
The branch, master has been updated
   via  e2c9521 remove Linuxlabs from Poland on their own request
  from  2480afa NEWS[4.17.5]: Samba 4.17.5 Available for Download

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit e2c95213f6668cbd6101225dbd6d936ca49ccd09
Author: Björn Jacke 
Date:   Fri Jan 27 18:41:12 2023 +0100

remove Linuxlabs from Poland on their own request

---

Summary of changes:
 support/countries.html |  1 -
 support/poland.html| 31 ---
 2 files changed, 32 deletions(-)
 delete mode 100644 support/poland.html


Changeset truncated at 500 lines:

diff --git a/support/countries.html b/support/countries.html
index a6af0f3..f489267 100644
--- a/support/countries.html
+++ b/support/countries.html
@@ -29,7 +29,6 @@
 
  New Zealand
  Pakistan
- Poland
  Portugal
  Romania
 
diff --git a/support/poland.html b/support/poland.html
deleted file mode 100644
index 2bb6cf6..000
--- a/support/poland.html
+++ /dev/null
@@ -1,31 +0,0 @@
-
-Samba Support -- Poland
-
-
-Commercial Support - Poland
-
-
-http://linuxlabs.pl/;>Linuxlabs
-
-
-Rzemieslnicza 1
-30 363 Krakow
-
-http://linuxlabs.pl/;>Linuxlabs
-+48 12 296 45 65
-mailto:i...@linuxlabs.pl;>i...@linuxlabs.pl
-
-
-Enterprise Linux Services. We provide 24/7 tech support for Linux servers and
-Open Source software applications.
-We have experience in advanced configuration of Samba as an Active Directory DC
-for Enterpise.
-
-Usługi Linux dla przedsiębiorstw.  Zapewniamy wsparcie techniczne 24/7 dla
-serwerów Linux i aplikacji Open Source.
-Mamy doświadczenie z zaawansowaną konfiguracją Samby jako Active Directory 
DC
-dla przedsiębiorstw.
-
-
-
-


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2023-01-05 Thread Björn Jacke
The branch, master has been updated
   via  c9893ac update contact information
  from  53f2f82 NEWS[4.17.4]: Samba 4.17.4, 4.16.8 and 4.15.13 Security 
Releases are available for Download

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit c9893ac631da4a2cd5b4a619242f391f933dcf10
Author: Björn Jacke 
Date:   Thu Jan 5 10:30:52 2023 +0100

update contact information

---

Summary of changes:
 support/germany.html   |  24 +--
 support/globalsupport.html |  91 ++-
 support/us.html| 105 +
 3 files changed, 121 insertions(+), 99 deletions(-)


Changeset truncated at 500 lines:

diff --git a/support/germany.html b/support/germany.html
index e5bd92f..5efbb46 100644
--- a/support/germany.html
+++ b/support/germany.html
@@ -52,12 +52,13 @@ Specialty samba capabilities:We move Windows Shares to 
Samba automaticly.  We tr
 
 
 
-https://www.sernet.de/de/;>SerNet
+SerNet
 
 SerNet GmbH
 Bahnhofsallee 1b
 37081 Gttingen
 Germany
+https://www.sernet.de/;>https://www.sernet.de/
 phone: +49-551-37-0
 mail:  mailto:sa...@sernet.com;>sa...@sernet.com
 
@@ -66,28 +67,27 @@ SerNet ist eine der fhrenden Anbieterinnen von 
Dienstleistungen und Produk
 
 SerNet bietet Support fr Samba auf Basis von SLAs (Service Level 
Agreements) weltweit an.
 
-Mit SAMBA+ bietet SerNet eigene und immer aktuelle Samba-Pakete fr 
verschiedene Linux- und Unix-Systeme an - 
+Mit SAMBA+ bietet SerNet eigene und immer aktuelle Samba-Pakete fr alle 
wichtigen Linux-Systeme und IBM AIX an - 
 fr alle Plattformen aus der gleichen Quelle und mit gleicher 
Konfiguration und damit weitgehend identischem Verhalten.
-Alle verfgbaren ActiveDirectory-Optionen und verschiedene 
Cluster-File-Systeme wie IBMs GPFS werden untersttzt.
+Alle wichtigen ActiveDirectory-Optionen und verschiedene Cluster-File-Systeme 
wie IBMs GPFS werden untersttzt.
 
-SerNet veranstaltet mit der http://www.sambaXP.org/;>sambaXP die 
einzige internationale Entwickler- und Anwender-Konferenz zu Samba
+SerNet veranstaltet mit der http://www.sambaXP.org/;>sambaXP die 
einzige internationale Entwickler:innen- und Anwender:innen-Konferenz zu Samba
 jedes Jahr im Mai seit 2002.
 
 Mitglieder aus dem internationalen http://samba.TEAM; 
target=_blank>samba.TEAM arbeiten bei SerNet:
 
-mailto:v...@samba.org>Volker Lendecke war eines der ersten 
Mitglieder im Sambateam und Mitgrnder der SerNet.
+Jule Anger ist die Release-Managerin des Samba-Teams.
 
-mailto:me...@samba.org>Stefan Metzmacher ist AD- und
-Sicherheitsspezialist und  einer der Hauptautoren von Samba 4.
+Bjrn Baumbach ist Maintainer von SAMBA+ und behebt diverse Samba-Bugs.
 
-mailto:r...@samba.org>Ralph Bhme kam ber Netatalk zu 
Samba.
+Ralph Bhme kam ber Netatalk zu Samba.
 
-mailto:k...@samba.org>Karolin Seeger ist die Release-Managerin des 
Sambateams.
+Bjrn Jacke integriert Samba in Netzwerke aller 
Grenordnungen.
 
-mailto:b...@samba.org>Bjrn Jacke integriert Samba in 
Netzwerke aller Grenordnungen.
+Volker Lendecke war eines der ersten Mitglieder im Sambateam und 
Mitgrnder der SerNet.
 
-mailto:b...@samba.org>Bjrn Baumbach ist Maintainer von SAMBA+
-und behebt diverse Samba-Bugs.
+Stefan Metzmacher ist AD- und
+Sicherheitsspezialist und  einer der Hauptautoren von Samba 4.
 
 
 Weitere Informationen ber SerNet finden Sie unter:
diff --git a/support/globalsupport.html b/support/globalsupport.html
index 765aadb..bb03db9 100644
--- a/support/globalsupport.html
+++ b/support/globalsupport.html
@@ -57,45 +57,76 @@ Specialty samba capabilities: World-leaders in IPv6 and 
Windows - Unix integrati
 
 
 
-https://www.sernet.de/en/;>SerNet
-
-SerNet GmbH
-Bahnhofsallee 1b
-37081 Gttingen
-Germany
-phone: +49-551-37-0
-mail:  mailto:sa...@sernet.com;>sa...@sernet.com
-
-
-https://www.sernet.com/; target=_blank>SerNet is a leading 
service provider for Samba, Linux and and OpenSource related topics
-and offers SLA support contracts with 24/7 support including guaranteed 
reaction times.
-
-https://samba.plus/; target=_blank>SAMBA+ is available via 
software subscription and offers up-to-date Samba for various platforms from 
one source including 
-enhanced ActiveDirectory support and file systems support for IBM's GPFS and 
more.
-
-SerNet also organizes the annual http://www.sambaXP.org/;>sambaXP, the international Samba conference 
for users and developers in Germany.
-
-Members of the core http://samba.TEAM; target=_blank>samba.TEAM 
work with SerNet:
+SerNet, Inc.
+
+
+
+
+SerNet, Inc.  
+SerNet GmbH
+
+
+101 Montgomery St.
+Bahnhofsallee 1b
+
+
+San Francisco, CA 94104
+37081 Gttingen
+
+
+USA
+Germany
+
+
+
+https://www.sernet.com/;>https://www.sernet.com/
+
+https://www.sernet.de/;>https://www.sernet.de/
+
+
+phone: +1(415)248-7818
+phone: 

[SCM] Samba Website Repository - branch master updated

2022-11-25 Thread Björn Jacke
The branch, master has been updated
   via  81dfaa6 news: html syntax error due to duplicate  tag, This 
breaks Feed Readers
  from  1d1e4d5 NEWS[4.17.3]: Samba 4.17.3, 4.16.7 and 4.15.12 Security 
Releases are available for Download

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 81dfaa6089d90e47a65bff45148b72a8507f2991
Author: Björn Jacke 
Date:   Fri Nov 25 15:08:51 2022 +0100

news: html syntax error due to duplicate  tag, This breaks Feed Readers

---

Summary of changes:
 posted_news/20221115-072401.4.17.3.body.html | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/posted_news/20221115-072401.4.17.3.body.html 
b/posted_news/20221115-072401.4.17.3.body.html
index d270dda..e390766 100644
--- a/posted_news/20221115-072401.4.17.3.body.html
+++ b/posted_news/20221115-072401.4.17.3.body.html
@@ -3,10 +3,9 @@
 Samba 4.17.3, 4.16.7 and 4.15.12 Security Releases are 
available for Download
 
 These are Security Releases in order to address
-CVE-2022-42898 and
+CVE-2022-42898.
 
 
-
 The uncompressed tarball has been signed using GnuPG (ID AA99442FB680B620).
 
 


-- 
Samba Website Repository



[SCM] Samba Shared Repository - branch master updated

2022-10-24 Thread Björn Jacke
The branch, master has been updated
   via  da663b5d4f1 vfs_gpfs: Remove documentation for removed 
gpfs:refuse_dacl_protected option
   via  5c627988a26 vfs_gpfs: Remove support for old GPFS without 
DACL_PROTECTED support
  from  284afec29ff winbind: Enforce user group policy when enabled

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit da663b5d4f16478973510d3b0016e41d642fa256
Author: Christof Schmitt 
Date:   Sun Oct 23 16:04:36 2022 -0700

vfs_gpfs: Remove documentation for removed gpfs:refuse_dacl_protected option

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15211

Signed-off-by: Christof Schmitt 
Reviewed-by: Bjoern Jacke 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Mon Oct 24 16:41:03 UTC 2022 on sn-devel-184

commit 5c627988a268adc8da7b1c954f3706c5c878fd3b
Author: Christof Schmitt 
Date:   Sun Oct 23 16:01:41 2022 -0700

vfs_gpfs: Remove support for old GPFS without DACL_PROTECTED support

GPFS 3.5 introduced support for storing the DACL_PROTECTED flag as part
of the ACL. That version has long been superceded. Remove this now
unused codepath.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15211

Signed-off-by: Christof Schmitt 
Reviewed-by: Bjoern Jacke 

---

Summary of changes:
 docs-xml/manpages/vfs_gpfs.8.xml | 31 ---
 source3/modules/vfs_gpfs.c   |  8 
 2 files changed, 39 deletions(-)


Changeset truncated at 500 lines:

diff --git a/docs-xml/manpages/vfs_gpfs.8.xml b/docs-xml/manpages/vfs_gpfs.8.xml
index a7168e43b46..29f2ac453f0 100644
--- a/docs-xml/manpages/vfs_gpfs.8.xml
+++ b/docs-xml/manpages/vfs_gpfs.8.xml
@@ -252,37 +252,6 @@


 
-   gpfs:refuse_dacl_protected = [ yes | no ]
-   
-   
-   As GPFS does not support the ACE4_FLAG_NO_PROPAGATE NFSv4 flag 
(which would be
-   the mapping for the DESC_DACL_PROTECTED flag), the status of 
this flag is
-   currently silently ignored by Samba. That means that if you 
deselect the "Allow
-   inheritable permissions..." checkbox in Windows' ACL dialog and 
then apply the
-   ACL, the flag will be back immediately.
-   
-   
-   To make sure that automatic migration with e.g. robocopy does 
not lead to
-   ACLs silently (and unintentionally) changed, you can set
-   gpfs:refuse_dacl_protected = yes to enable 
an explicit
-   check for this flag and if set, it will return 
NT_STATUS_NOT_SUPPORTED so
-   errors are shown up on the Windows side and the Administrator 
is aware of
-   the ACLs not being settable like intended
-   
-
-   
-   
-   no(default) - ignore the DESC_DACL_PROTECTED 
flags.
-   
-   
-   yes - reject ACLs with DESC_DACL_PROTECTED.
-   
-   
-   
-
-   
-   
-
gpfs:dfreequota = [ yes | no ]


diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c
index 779627f8115..969e7744fce 100644
--- a/source3/modules/vfs_gpfs.c
+++ b/source3/modules/vfs_gpfs.c
@@ -842,14 +842,6 @@ static NTSTATUS 
gpfsacl_set_nt_acl_internal(vfs_handle_struct *handle, files_str
if (acl->acl_version == GPFS_ACL_VERSION_NFS4) {
struct gpfs_config_data *config;
 
-   if (lp_parm_bool(fsp->conn->params->service, "gpfs",
-"refuse_dacl_protected", false)
-   && (psd->type_DESC_DACL_PROTECTED)) {
-   DEBUG(2, ("Rejecting unsupported ACL with 
DACL_PROTECTED bit set\n"));
-   talloc_free(acl);
-   return NT_STATUS_NOT_SUPPORTED;
-   }
-
SMB_VFS_HANDLE_GET_DATA(handle, config,
struct gpfs_config_data,
return NT_STATUS_INTERNAL_ERROR);


-- 
Samba Shared Repository



[SCM] Samba Shared Repository - branch master updated

2022-05-11 Thread Björn Jacke
The branch, master has been updated
   via  be2e2044b8e s3: libsmbclient: Cope with SMB2 servers that return 
STATUS_USER_SESSION_DELETED on a SMB2_ECHO (SMB2_OP_KEEPALIVE) call with a NULL 
session.
  from  0b214d666a9 gitignore: Add .ropeproject for pylsp-rope plugin

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit be2e2044b8ef56112162a42ac19b3791c787916b
Author: Jeremy Allison 
Date:   Wed Dec 11 15:06:40 2019 -0800

s3: libsmbclient: Cope with SMB2 servers that return 
STATUS_USER_SESSION_DELETED on a SMB2_ECHO (SMB2_OP_KEEPALIVE) call with a NULL 
session.

This is already tested by smb2.session.expire which
shows that Windows and Samba servers don't need this,
but some third party server are returning STATUS_USER_SESSION_DELETED
with a NULL sessionid.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=13218

Signed-off-by: Jeremy Allison 
Reviewed-by: Bjoern Jacke 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Wed May 11 18:06:42 UTC 2022 on sn-devel-184

---

Summary of changes:
 source3/libsmb/libsmb_server.c | 21 -
 1 file changed, 20 insertions(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/source3/libsmb/libsmb_server.c b/source3/libsmb/libsmb_server.c
index 09d27868c0e..ce17e4fed09 100644
--- a/source3/libsmb/libsmb_server.c
+++ b/source3/libsmb/libsmb_server.c
@@ -61,14 +61,33 @@ SMBC_check_server(SMBCCTX * context,
1,
data_blob_const(data, sizeof(data)));
if (!NT_STATUS_IS_OK(status)) {
+   bool ok = false;
+   /*
+* Some SMB2 servers (not Samba or Windows)
+* check the session status on SMB2_ECHO and return
+* NT_STATUS_USER_SESSION_DELETED
+* if the session was not set. That's OK, they still
+* replied.
+* BUG: https://bugzilla.samba.org/show_bug.cgi?id=13218
+*/
+   if (smbXcli_conn_protocol(server->cli->conn) >=
+   PROTOCOL_SMB2_02) {
+   if (NT_STATUS_EQUAL(status,
+   NT_STATUS_USER_SESSION_DELETED)) {
+   ok = true;
+   }
+   }
/*
 * Some NetApp servers return
 * NT_STATUS_INVALID_PARAMETER.That's OK, they still
 * replied.
 * BUG: https://bugzilla.samba.org/show_bug.cgi?id=13007
 */
-   if (!NT_STATUS_EQUAL(status,
+   if (NT_STATUS_EQUAL(status,
NT_STATUS_INVALID_PARAMETER)) {
+   ok = true;
+   }
+   if (!ok) {
return 1;
}
}


-- 
Samba Shared Repository



[SCM] Samba Website Repository - branch master updated

2022-04-20 Thread Björn Jacke
The branch, master has been updated
   via  dc35372 remove gekko from support/austria.html on their request
  from  68710e6 NEWS[SambaXP2022]: shorten snip

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit dc35372e8219227c56912d82af059759d59ea16d
Author: Björn Jacke 
Date:   Wed Apr 20 14:34:37 2022 +0200

remove gekko from support/austria.html on their request

---

Summary of changes:
 support/austria.html | 20 
 1 file changed, 20 deletions(-)


Changeset truncated at 500 lines:

diff --git a/support/austria.html b/support/austria.html
index 78a4f7c..ce35f8f 100644
--- a/support/austria.html
+++ b/support/austria.html
@@ -27,26 +27,6 @@ Specialty samba capabilities: Samba as PDC, High-Availability
 
 
 
-
-Gekko it-solutions GmbH
-
-Wiegelstraße 10
-1230 Wien
-
-http://www.gekko.at;>www.gekko.at
-Tel: +43 1 710 56 56
-mailto:t.stee...@gekko.at;>t.stee...@gekko.at
-mailto:j.kunsch...@gekko.at;>j.kunsch...@gekko.at
-
-
-
-Gekko is an Austrian Full Service IT Company with 24 employees in Vienna.
-
-We can provide you: Samba as Member Server, Stackable Modules, Samba and
-Replication via rsync, but also the full range of IT Service and Support.
-
-
-
 
 oops!
 


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2022-04-06 Thread Björn Jacke
The branch, master has been updated
   via  0f75f0b add sdc logo and link in box_beyond_samba.html
  from  57f83fe box_beyond_samba: improve spacing

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 0f75f0b32ef89bc72cdc84bb62030319b6185c83
Author: Björn Jacke 
Date:   Wed Apr 6 12:24:54 2022 +0200

add sdc logo and link in box_beyond_samba.html

---

Summary of changes:
 box_beyond_samba.html |   4 ++--
 images/sdc-logo.png   | Bin 0 -> 8641 bytes
 2 files changed, 2 insertions(+), 2 deletions(-)
 create mode 100644 images/sdc-logo.png


Changeset truncated at 500 lines:

diff --git a/box_beyond_samba.html b/box_beyond_samba.html
index 716a1af..cb9d31f 100644
--- a/box_beyond_samba.html
+++ b/box_beyond_samba.html
@@ -10,13 +10,13 @@
 
 
 
-https://www.sambaxp.org; target="_blank">
+https://www.sambaxp.org/; target="_blank">
 by
 https://www.sernet.de/en/; target="_blank">SerNet
 
 
 
-https://www.snia.org/events/storage-developer; target="_blank">SDC
+https://storagedeveloper.org/; target="_blank">
 by
 https://www.snia.org; target="_blank">SNIA
 
diff --git a/images/sdc-logo.png b/images/sdc-logo.png
new file mode 100644
index 000..c96eb92
Binary files /dev/null and b/images/sdc-logo.png differ


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2022-04-05 Thread Björn Jacke
The branch, master has been updated
   via  57f83fe box_beyond_samba: improve spacing
  from  f69f733 add SambaXP image and link in box_beyond_samba.html

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 57f83fe878d86e693eaec10e9b2ca9a01e9e7049
Author: Björn Jacke 
Date:   Tue Apr 5 18:34:21 2022 +0200

box_beyond_samba: improve spacing

---

Summary of changes:
 box_beyond_samba.html | 1 -
 1 file changed, 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/box_beyond_samba.html b/box_beyond_samba.html
index a744682..716a1af 100644
--- a/box_beyond_samba.html
+++ b/box_beyond_samba.html
@@ -14,7 +14,6 @@
 by
 https://www.sernet.de/en/; target="_blank">SerNet
 
-
 
 
 https://www.snia.org/events/storage-developer; target="_blank">SDC


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2022-04-05 Thread Björn Jacke
The branch, master has been updated
   via  f69f733 add SambaXP image and link in box_beyond_samba.html
  from  e1c5b95 NEWS[4.14.13]: Samba 4.14.13 Available for Download

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit f69f7330df715785ac47bd440e6515a12ec4218f
Author: Björn Jacke 
Date:   Tue Apr 5 18:16:59 2022 +0200

add SambaXP image and link in box_beyond_samba.html

---

Summary of changes:
 box_beyond_samba.html|   7 ++-
 images/sambaxp-small.png | Bin 0 -> 3537 bytes
 2 files changed, 6 insertions(+), 1 deletion(-)
 create mode 100644 images/sambaxp-small.png


Changeset truncated at 500 lines:

diff --git a/box_beyond_samba.html b/box_beyond_samba.html
index c5b8df2..a744682 100644
--- a/box_beyond_samba.html
+++ b/box_beyond_samba.html
@@ -8,10 +8,15 @@
 
 Conferences
 
-https://www.sambaxp.org; target="_blank">sambaXP
+
+
+https://www.sambaxp.org; target="_blank">
 by
 https://www.sernet.de/en/; target="_blank">SerNet
+
 
+
+
 https://www.snia.org/events/storage-developer; target="_blank">SDC
 by
 https://www.snia.org; target="_blank">SNIA
diff --git a/images/sambaxp-small.png b/images/sambaxp-small.png
new file mode 100644
index 000..e88e0b1
Binary files /dev/null and b/images/sambaxp-small.png differ


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2022-02-28 Thread Björn Jacke
The branch, master has been updated
   via  fde294c support/countries: s/Holland/Netherlands
  from  95248bc security advisories: fix the format of mail information 
with '<' and '>'

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit fde294c1055e64e120ed70b6f10370dbb0af7a01
Author: Björn Jacke 
Date:   Mon Feb 28 22:45:25 2022 +0100

support/countries: s/Holland/Netherlands

Signed-off-by: Bjoern Jacke 

---

Summary of changes:
 support/countries.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/support/countries.html b/support/countries.html
index 64254a0..a6af0f3 100644
--- a/support/countries.html
+++ b/support/countries.html
@@ -18,7 +18,7 @@
  France
  Germany
 
- Holland
+ Netherlands
  Hong Kong - China
  Hungary
  India


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2022-02-07 Thread Björn Jacke
The branch, master has been updated
   via  98ba742 update Help4IT Limited contact info
  from  c1f3b97 history/security.html: fix link to 
samba-4.13.17-security-2022-01-31.patch

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 98ba7427976833cc8991a480f5b42339d5e916e1
Author: Björn Jacke 
Date:   Mon Feb 7 16:51:59 2022 +0100

update Help4IT Limited contact info

Björn

---

Summary of changes:
 support/uk.html | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/support/uk.html b/support/uk.html
index 498c6de..3c7b0e0 100644
--- a/support/uk.html
+++ b/support/uk.html
@@ -106,18 +106,17 @@ Specialty samba capabilities: World-leaders in IPv6 and 
Windows - Unix integrati
 
 
 
-
 
 Help4IT Limited
 
-61 Queen Street, London EC4R 1AF
+5-11 Lavington Street
 London
+SE1 0NZ
 United Kingdom
 
 http://www.help4linux.co.uk;>http://www.help4linux.co.uk
 0800 043 4448 (within UK) +44(0)2076539780 (outside UK)
 mailto:i...@help4it.co.uk;>i...@help4it.co.uk
-John Hudson
 
 
 help4IT have thorough experience integrating Linux together with Samba


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2022-01-22 Thread Björn Jacke
The branch, master has been updated
   via  3cb1536 Revert "generated_news.sh: add feed syntax checker"
  from  e5c9154 NEWS[4.15.4]: Samba 4.15.4 Available for Download

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 3cb15368c8cf77f316ca7687ae6ac70ddc372c47
Author: Björn Jacke 
Date:   Sat Jan 22 14:03:01 2022 +0100

Revert "generated_news.sh: add feed syntax checker"

This reverts commit c24ced8467f6f1c091daac841d6354083565bbd2.

we do this in the feed_push script now, only once when there was a diff in 
the feed.

---

Summary of changes:
 generated_news.sh | 9 -
 1 file changed, 9 deletions(-)


Changeset truncated at 500 lines:

diff --git a/generated_news.sh b/generated_news.sh
index 4851ed5..b4be94d 100755
--- a/generated_news.sh
+++ b/generated_news.sh
@@ -126,14 +126,5 @@ generate "generated_news/latest_10_bodies.html" "10" 
".*\.body\.html"
 generate "generated_news/latest_2_bodies.html" "2" ".*\.\(snip\|body\)\.html"
 generate_feed "news.atom" "10" ".*\.\(snip\|body\)\.html"
 
-if ! `w3m -dump 
'https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fwww.samba.org%2Fsamba%2Fnews.atom'
 | grep -q Congratulations`
-then
-   {
-   echo "NEWS feed error? Maybe a recent web repo checkin contained wrong 
html"
-   echo "Check 
https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fwww.samba.org%2Fsamba%2Fnews.atom;
-   } | mail -s "ATOM feed eror" jan...@samba.org r...@samba.org
-fi
-
-
 download_url="https://download.samba.org/pub/samba/stable;
 generate_latest_stable_release "generated_news/latest_stable_release.html" 
"${download_url}"


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2022-01-14 Thread Björn Jacke
The branch, master has been updated
   via  c24ced8 generated_news.sh: add feed syntax checker
  from  b7477d9 fix typo: These -> This

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit c24ced8467f6f1c091daac841d6354083565bbd2
Author: Björn Jacke 
Date:   Fri Jan 14 13:08:58 2022 +0100

generated_news.sh: add feed syntax checker

---

Summary of changes:
 generated_news.sh | 9 +
 1 file changed, 9 insertions(+)


Changeset truncated at 500 lines:

diff --git a/generated_news.sh b/generated_news.sh
index b4be94d..4851ed5 100755
--- a/generated_news.sh
+++ b/generated_news.sh
@@ -126,5 +126,14 @@ generate "generated_news/latest_10_bodies.html" "10" 
".*\.body\.html"
 generate "generated_news/latest_2_bodies.html" "2" ".*\.\(snip\|body\)\.html"
 generate_feed "news.atom" "10" ".*\.\(snip\|body\)\.html"
 
+if ! `w3m -dump 
'https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fwww.samba.org%2Fsamba%2Fnews.atom'
 | grep -q Congratulations`
+then
+   {
+   echo "NEWS feed error? Maybe a recent web repo checkin contained wrong 
html"
+   echo "Check 
https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fwww.samba.org%2Fsamba%2Fnews.atom;
+   } | mail -s "ATOM feed eror" jan...@samba.org r...@samba.org
+fi
+
+
 download_url="https://download.samba.org/pub/samba/stable;
 generate_latest_stable_release "generated_news/latest_stable_release.html" 
"${download_url}"


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2022-01-10 Thread Björn Jacke
The branch, master has been updated
   via  b7477d9 fix typo: These -> This
  from  c2d9b98 fix a missing  in the headline. This caused a syntax 
error in the generated atom feed.

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit b7477d9b1f5c612d54c2cf069267e486cb4ba81f
Author: Björn Jacke 
Date:   Tue Jan 11 00:33:12 2022 +0100

fix typo: These -> This

---

Summary of changes:
 posted_news/20220110-100103.4.13.16.body.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/posted_news/20220110-100103.4.13.16.body.html 
b/posted_news/20220110-100103.4.13.16.body.html
index 6297d7f..60871d0 100644
--- a/posted_news/20220110-100103.4.13.16.body.html
+++ b/posted_news/20220110-100103.4.13.16.body.html
@@ -2,7 +2,7 @@
 10 January 2022
 Samba 4.13.16 Security Release is available for Download
 
-These is a Security Release in order to address
+This is a Security Release in order to address
 CVE-2021-43566.
 
 


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2022-01-10 Thread Björn Jacke
The branch, master has been updated
   via  c2d9b98 fix a missing  in the headline. This caused a syntax 
error in the generated atom feed.
   via  9344f30 some s/http/https/ fixes
  from  5038e2f add CVE-2021-20316.html

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit c2d9b9803460776e006c703a19af160463ab57a7
Author: Björn Jacke 
Date:   Tue Jan 11 00:03:42 2022 +0100

fix a missing  in the headline. This caused a syntax error in the 
generated atom feed.

commit 9344f301a779d94417a026f32430ba6bdb0bb914
Author: Björn Jacke 
Date:   Mon Jan 10 23:54:07 2022 +0100

some s/http/https/ fixes

---

Summary of changes:
 devel/index.html  | 8 
 menu_hack_samba_raw.html  | 4 ++--
 menu_learn_samba_raw.html | 2 +-
 menu_think_samba_raw.html | 2 +-
 posted_news/20220110-100103.4.13.16.body.html | 2 +-
 5 files changed, 9 insertions(+), 9 deletions(-)


Changeset truncated at 500 lines:

diff --git a/devel/index.html b/devel/index.html
index 5ec760d..31a0ef4 100755
--- a/devel/index.html
+++ b/devel/index.html
@@ -20,10 +20,10 @@ or
 git clone https://git.samba.org/samba.git samba
 
 For more details see
-http://wiki.samba.org/index.php/Using_Git_for_Samba_Development;>Using
+https://wiki.samba.org/index.php/Using_Git_for_Samba_Development;>Using
 Git for Samba Development.
 Also see the wiki article on
-http://wiki.samba.org/index.php/Contribute;>Contribute.
+https://wiki.samba.org/index.php/Contribute;>Contribute.
 
 Current release status
 
@@ -58,7 +58,7 @@ Channel logs are available http://irclog.samba.org/;>here.
 For anyone interested in getting up to speed with SMB/CIFS, NetBIOS, 
MS-RPC, etc... Here are some links to help out:
 
   
-Get a copy of http://www.wireshark.org;>Wireshark or 
possibly Microsoft's Network Monitor shipped with Windows NT/2k server.
+Get a copy of https://www.wireshark.org;>Wireshark or 
possibly Microsoft's Network Monitor shipped with Windows NT/2k server.
   
   
 See the docs at:
@@ -81,7 +81,7 @@ Channel logs are available http://irclog.samba.org/;>here.
 
 Get a symbolic debugger (gdb, ddd, ups, etc...) and step through the 
smbd source code as it is running in response to a SMB call (or RPC) that you 
are interested in.
   
-The MSDN site (http://msdn.microsoft.com/;>msdn.microsoft.com) is pretty good as 
well, if you know what you are looking for.
+The MSDN site (https://msdn.microsoft.com/;>msdn.microsoft.com) is pretty good as 
well, if you know what you are looking for.
   
 
   
diff --git a/menu_hack_samba_raw.html b/menu_hack_samba_raw.html
index cc53c9b..b418e92 100644
--- a/menu_hack_samba_raw.html
+++ b/menu_hack_samba_raw.html
@@ -1,6 +1,6 @@
 
Devel Overview
-   http://gitweb.samba.org;>Git Source
-   http://build.samba.org/;>Build Farm
+   https://git.samba.org;>Git Source
+   https://build.samba.org/;>Build Farm
https://bugzilla.samba.org;>Bug Reports
 
diff --git a/menu_learn_samba_raw.html b/menu_learn_samba_raw.html
index 51cb779..8907bd5 100644
--- a/menu_learn_samba_raw.html
+++ b/menu_learn_samba_raw.html
@@ -1,4 +1,4 @@
 
Docs And Books
-   http://wiki.samba.org/;>Wiki
+   https://wiki.samba.org/;>Wiki
 
diff --git a/menu_think_samba_raw.html b/menu_think_samba_raw.html
index c3e8b8c..30d2723 100644
--- a/menu_think_samba_raw.html
+++ b/menu_think_samba_raw.html
@@ -1,6 +1,6 @@
 
What Is Samba?
Latest News
-   http://planet.samba.org/;>Planet Samba
+   https://planet.samba.org/;>Planet Samba
FAQ
 
diff --git a/posted_news/20220110-100103.4.13.16.body.html 
b/posted_news/20220110-100103.4.13.16.body.html
index cedcc5a..6297d7f 100644
--- a/posted_news/20220110-100103.4.13.16.body.html
+++ b/posted_news/20220110-100103.4.13.16.body.html
@@ -1,6 +1,6 @@
 
 10 January 2022
-Samba 4.13.16 Security Release is available for Download
+Samba 4.13.16 Security Release is available for Download
 
 These is a Security Release in order to address
 CVE-2021-43566.


-- 
Samba Website Repository



[SCM] Samba Shared Repository - branch master updated

2021-08-31 Thread Björn Jacke
The branch, master has been updated
   via  1209c89dcf6 util_sock: fix assignment of sa_socklen
  from  638c6d423e7 selftest: Remove skip of samba4.rpc.unixinfo

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 1209c89dcf6371bbfa4f3929a47a573ef2916c1a
Author: Bjoern Jacke 
Date:   Tue Aug 17 11:39:24 2021 +

util_sock: fix assignment of sa_socklen

Signed-off-by: Stefan Metzmacher 
Reviewed-by: Bjoern Jacke 
Reviewed-by: Volker Lendecke 

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14800

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Tue Aug 31 09:54:35 UTC 2021 on sn-devel-184

---

Summary of changes:
 source3/lib/util_sock.c | 9 +
 1 file changed, 9 insertions(+)


Changeset truncated at 500 lines:

diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c
index 2dbb572a974..85dc3efbe15 100644
--- a/source3/lib/util_sock.c
+++ b/source3/lib/util_sock.c
@@ -254,6 +254,15 @@ int open_socket_in(
int val = rebind ? 1 : 0;
bool ok;
 
+   switch (addr.u.sa.sa_family) {
+   case AF_INET6:
+   addr.sa_socklen = sizeof(struct sockaddr_in6);
+   break;
+   case AF_INET:
+   addr.sa_socklen = sizeof(struct sockaddr_in);
+   break;
+   }
+
ok = samba_sockaddr_set_port(, port);
if (!ok) {
ret = -EINVAL;


-- 
Samba Shared Repository



[SCM] Samba Website Repository - branch master updated

2021-04-27 Thread Björn Jacke
The branch, master has been updated
   via  470c809 fix Lightspeed address
  from  4d72cf7 update Lightspeed Technologies contact info

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 470c809b669bd032743c2a6f1a934d5750454a0f
Author: Björn Jacke 
Date:   Tue Apr 27 10:50:30 2021 +0200

fix Lightspeed address

---

Summary of changes:
 support/singapore.html | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/support/singapore.html b/support/singapore.html
index 97c8488..fa23329 100644
--- a/support/singapore.html
+++ b/support/singapore.html
@@ -25,9 +25,8 @@ Contact us now for Open Source Business Solutions.
 
 
 Lightspeed Technologies Pte Ltd
-Address: 33 Temasek Avenue, #18-00 Centennial Tower, Singapore 039190
+Address: 3 Temasek Avenue, #18-00 Centennial Tower, Singapore 039190
 Tel (65) 6468-5536 
-Fax (65) 65388517
 https://www.lightspeed.com.sg;>https://www.lightspeed.com.sg
 
 


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2021-04-26 Thread Björn Jacke
The branch, master has been updated
   via  4d72cf7 update Lightspeed Technologies contact info
  from  dadbd28 Add Samba 4.14.3 to the list.

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 4d72cf76a254e0e460f344fbf208f74fb72ce445
Author: Björn Jacke 
Date:   Mon Apr 26 12:17:07 2021 +0200

update Lightspeed Technologies contact info

---

Summary of changes:
 support/singapore.html | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/support/singapore.html b/support/singapore.html
index 004c3f4..97c8488 100644
--- a/support/singapore.html
+++ b/support/singapore.html
@@ -25,10 +25,10 @@ Contact us now for Open Source Business Solutions.
 
 
 Lightspeed Technologies Pte Ltd
-Address: 36B North Canal Road SINGAPORE 059292
-Tel (65) 65351216
+Address: 33 Temasek Avenue, #18-00 Centennial Tower, Singapore 039190
+Tel (65) 6468-5536 
 Fax (65) 65388517
-http://www.lightspeed.com.sg;>http://www.lightspeed.com.sg
+https://www.lightspeed.com.sg;>https://www.lightspeed.com.sg
 
 
 


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2021-03-26 Thread Björn Jacke
The branch, master has been updated
   via  03b684e add width/height value for paypal logo
  from  e05ef6a use self-hosted paypal.png image

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 03b684e4f95afd5fc3bd34e89b500888c6764f25
Author: Björn Jacke 
Date:   Fri Mar 26 12:52:22 2021 +0100

add width/height value for paypal logo

---

Summary of changes:
 donations.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/donations.html b/donations.html
index a8c28ba..7cc512d 100755
--- a/donations.html
+++ b/donations.html
@@ -19,7 +19,7 @@ To use PayPal, click on the 'PayPal Donate' button below.
 https://www.paypal.com/cgi-bin/webscr; method="post">
 
 
-
+
 
 
 Check


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2021-03-26 Thread Björn Jacke
The branch, master has been updated
   via  e05ef6a use self-hosted paypal.png image
   via  ec38b4b add self-hosted paypal logo
  from  4e1e3f6 NEWS[4.14.1]: Samba 4.14.2 (4.14.1), 4.13.7 (4.13.6) and 
4.12.14 (4.12.13) Security Releases

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit e05ef6aac62861d8fa4cbca287964e16414bd3cc
Author: Björn Jacke 
Date:   Fri Mar 26 12:44:04 2021 +0100

use self-hosted paypal.png image

commit ec38b4b83030758f8384b7097f017f56a0b6064c
Author: Björn Jacke 
Date:   Fri Mar 26 12:43:38 2021 +0100

add self-hosted paypal logo

---

Summary of changes:
 donations.html|   3 +--
 images/paypal.png | Bin 0 -> 11134 bytes
 2 files changed, 1 insertion(+), 2 deletions(-)
 create mode 100644 images/paypal.png


Changeset truncated at 500 lines:

diff --git a/donations.html b/donations.html
index dcafd94..a8c28ba 100755
--- a/donations.html
+++ b/donations.html
@@ -19,8 +19,7 @@ To use PayPal, click on the 'PayPal Donate' button below.
 https://www.paypal.com/cgi-bin/webscr; method="post">
 
 
-https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif; border="0" 
name="submit" alt="PayPal - The safer, easier way to pay online!">
-https://www.paypalobjects.com/en_US/i/scr/pixel.gif; width="1" height="1">
+
 
 
 Check
diff --git a/images/paypal.png b/images/paypal.png
new file mode 100644
index 000..b06a590
Binary files /dev/null and b/images/paypal.png differ


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2021-03-14 Thread Björn Jacke
The branch, master has been updated
   via  837ed7a update ml etiquette
  from  9bd5846 history/samba-4.12.12.html: Fix typo.

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 837ed7a547b67842d30c8717b2df6a78893b50c5
Author: Björn Jacke 
Date:   Sun Mar 14 23:37:06 2021 +0100

update ml etiquette

---

Summary of changes:
 ml-etiquette.html | 21 +++--
 1 file changed, 11 insertions(+), 10 deletions(-)


Changeset truncated at 500 lines:

diff --git a/ml-etiquette.html b/ml-etiquette.html
index 6273fa1..d9e2258 100755
--- a/ml-etiquette.html
+++ b/ml-etiquette.html
@@ -39,13 +39,6 @@ editing policy.
   that is working quite well thank you very much but occasionally
   unwanted messages slip through.  Deal with it.
 
-  If you use the Internet,
-  and especially if you post to a public mailing list, you may
-  receive spam or viruses.  You should either use some kind of http://spamassassin.org/;>filtering, or post from a http://spamgourmet.com/;>disposable address.  Do
-  not whine about it on the list.
-
   Never say "Me too." It doesn't help anyone solve the problem.
   Instead, if you ARE having the same problem, give more information.
   Have you seen something that the other writer hasn't mentioned, which
@@ -58,9 +51,17 @@ editing policy.
   Give as much *relevant* information as possible such as Samba release
   number, OS, kernel version, etc...
 
-  RTFM.
-http://google.com/;>Google.
-http://groups.google.com/groups?q=group%3Amailing.unix.samba*;>groups.google.com.
+  Do not send test mails to the mailing lists, this annoys all the other
+  people on the list. Test mail senders risk being blacklisted otherwise.
+
+  RTFM.
+  https://www.startpage.com/;>Search the net for
+  solutions before asking the mailing list.
+
+  Further generic collaboration guidelines of the Samba Team are 
+  written down in the
+  https://wiki.samba.org/index.php/How_to_do_Samba:_Nicely;>Wiki.
+  
 
 
 


-- 
Samba Website Repository



[SCM] Samba Shared Repository - branch master updated

2021-03-03 Thread Björn Jacke
The branch, master has been updated
   via  29992fdbfbb vfs_aixacl2: Fix "mem_ctx" and "ppdesc" 
smb_fget_nt_acl_nfs4 args
   via  996560191ac wscript: use --as-needed only if tested successfully
  from  1c9add54750 s3:modules:vfs_virusfilter: Recent talloc changes cause 
infinite start-up failure

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 29992fdbfbb99470f5d13b00fe6ecf5c7ca5038f
Author: Volker Lendecke 
Date:   Wed Mar 3 11:20:51 2021 +0100

vfs_aixacl2: Fix "mem_ctx" and "ppdesc" smb_fget_nt_acl_nfs4 args

Signed-off-by: Volker Lendecke 
Reviewed-by: Björn Jacke 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Wed Mar  3 12:36:13 UTC 2021 on sn-devel-184

commit 996560191ac6bd603901dcd6c0de5d239e019ef4
Author: Björn Jacke 
Date:   Tue Mar 2 22:47:35 2021 +0100

wscript: use --as-needed only if tested successfully

Some OSes like Solaris based OmiOS don't support this.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14288

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

---

Summary of changes:
 source3/modules/vfs_aixacl2.c | 4 ++--
 wscript   | 3 ++-
 2 files changed, 4 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/modules/vfs_aixacl2.c b/source3/modules/vfs_aixacl2.c
index 42cdf961b8f..bb42641c02d 100644
--- a/source3/modules/vfs_aixacl2.c
+++ b/source3/modules/vfs_aixacl2.c
@@ -179,8 +179,8 @@ static NTSTATUS aixjfs2_fget_nt_acl(vfs_handle_struct 
*handle,
return NT_STATUS_ACCESS_DENIED;
}
 
-   status = smb_fget_nt_acl_nfs4(fsp, NULL, security_info, ppdesc,
- mem_ctx, pacl);
+   status = smb_fget_nt_acl_nfs4(
+   fsp, NULL, security_info, mem_ctx, ppdesc, pacl);
TALLOC_FREE(frame);
return status;
 }
diff --git a/wscript b/wscript
index 334b2988234..3c6b130bd22 100644
--- a/wscript
+++ b/wscript
@@ -340,7 +340,8 @@ def configure(conf):
 # allows us to find problems on our development hosts faster.
 # It also results in faster load time.
 
-conf.add_as_needed()
+conf.ADD_LDFLAGS('-Wl,--as-needed', testflags=True)
+
 
 if not conf.CHECK_NEED_LC("-lc not needed"):
 conf.ADD_LDFLAGS('-lc', testflags=False)


-- 
Samba Shared Repository



[SCM] Samba Website Repository - branch master updated

2021-01-03 Thread Björn Jacke
The branch, master has been updated
   via  78f730d remove jcifs from related sites
  from  8b4ac81 Add Samba 4.13.3 to the list.

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 78f730d98e331ddbe406304439a546e279371748
Author: Björn Jacke 
Date:   Sun Jan 3 13:40:40 2021 +0100

remove jcifs from related sites

---

Summary of changes:
 index.html | 1 -
 1 file changed, 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/index.html b/index.html
index ab74514..f269c4f 100644
--- a/index.html
+++ b/index.html
@@ -97,7 +97,6 @@
tevent.samba.org
tdb.samba.org
ldb.samba.org
-   jcifs.samba.org
rsync.samba.org
ccache.samba.org
ctdb.samba.org


-- 
Samba Website Repository



[SCM] Samba Shared Repository - branch master updated

2020-12-23 Thread Björn Jacke
The branch, master has been updated
   via  8fcde5912a9 net: remove obsolete net ads dns gethostbyname command
   via  985042d391e dnsupdates: clean up all RRSets and not only type A
   via  98caa173b24 tests: also test net ads dns (un)register with IPv6
   via  f30e100b396 tests: also test v6 for async dns test by using dig
  from  c00d537526c tests python krb5: PEP8 cleanups

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 8fcde5912a966c947adf2b5b313d224c9e827ca4
Author: Björn Jacke 
Date:   Tue Dec 22 21:04:34 2020 +0100

net: remove obsolete net ads dns gethostbyname command

net ads dns gethostbyname is doing the same as nslookup / host / dig and 
it's
quite limited and only supports A records. We should just drop it.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=13706

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Wed Dec 23 13:52:41 UTC 2020 on sn-devel-184

commit 985042d391e8124b157f21a6041ff9e17188483a
Author: Björn Jacke 
Date:   Tue Dec 22 17:23:16 2020 +0100

dnsupdates: clean up all RRSets and not only type A

BUG: https://bugzilla.samba.org/show_bug.cgi?id=13706
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14244

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

commit 98caa173b2471f963283bbb9d1c32ca8129f7e0b
Author: Björn Jacke 
Date:   Tue Dec 22 18:10:44 2020 +0100

tests: also test net ads dns (un)register with IPv6

BUG: https://bugzilla.samba.org/show_bug.cgi?id=13706

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

commit f30e100b39677f9a71200d324e5f9562909a343e
Author: Björn Jacke 
Date:   Tue Dec 22 17:28:41 2020 +0100

tests: also test v6 for async dns test by using dig

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

---

Summary of changes:
 docs-xml/manpages/net.8.xml  |  5 
 lib/addns/dnsrecord.c|  4 +--
 source3/utils/net_ads.c  | 37 ---
 source3/utils/net_dns.c  | 44 
 source3/utils/net_dns.h  |  2 --
 testprogs/blackbox/test_net_ads_dns.sh   | 26 +++-
 testprogs/blackbox/test_net_ads_dns_async.sh | 19 
 7 files changed, 27 insertions(+), 110 deletions(-)


Changeset truncated at 500 lines:

diff --git a/docs-xml/manpages/net.8.xml b/docs-xml/manpages/net.8.xml
index 951ddcd7c3a..94689e96c98 100644
--- a/docs-xml/manpages/net.8.xml
+++ b/docs-xml/manpages/net.8.xml
@@ -1393,11 +1393,6 @@ against an NT4 Domain Controller.
 Remove host dns entry from Active Directory.
 
 
-
-ADS DNS GETHOSTBYNAME NAMESERVER|HOSTNAME
-Look up the hostname from Active Directory. You can either provide 
nameserver ie IPv4|IPv6 address or the hostname. Only one should be provided at 
a time.
-
-
 
 
 
diff --git a/lib/addns/dnsrecord.c b/lib/addns/dnsrecord.c
index 0d149373997..e6e205e6832 100644
--- a/lib/addns/dnsrecord.c
+++ b/lib/addns/dnsrecord.c
@@ -430,10 +430,10 @@ DNS_ERROR dns_create_update_request(TALLOC_CTX *mem_ctx,
if (!ERR_DNS_IS_OK(err)) goto error;
 
/*
-* Delete any existing A records
+* Delete all existing RRsets from our name
 */
 
-   err = dns_create_delete_record(req, hostname, QTYPE_A, DNS_CLASS_ANY,
+   err = dns_create_delete_record(req, hostname, QTYPE_ANY, DNS_CLASS_ANY,
   );
if (!ERR_DNS_IS_OK(err)) goto error;
 
diff --git a/source3/utils/net_ads.c b/source3/utils/net_ads.c
index bcb9c9d5dde..c8b18a9c281 100644
--- a/source3/utils/net_ads.c
+++ b/source3/utils/net_ads.c
@@ -2190,35 +2190,6 @@ static int net_ads_dns_unregister(struct net_context *c,
 #endif
 }
 
-static int net_ads_dns_gethostbyname(struct net_context *c, int argc, const 
char **argv)
-{
-#if defined(WITH_DNS_UPDATES)
-   DNS_ERROR err;
-
-#ifdef DEVELOPER
-   talloc_enable_leak_report();
-#endif
-
-   if (argc != 2 || c->display_usage) {
-   d_printf(  "%s\n"
-  "%s\n"
-  "%s\n",
-_("Usage:"),
-_("net ads dns gethostbyname  \n"),
-_("  Look up hostname from the AD\n"
-  "nameserver\tName server to use\n"
-  "hostname\tName to look up\n"));
-   return -1;
-   }
-
-   err = do_gethostbyname(argv[0], argv[1]);
-   if (!ERR_DNS_IS_OK(err)) {
-   d_printf(_("do_gethostbyname returned %s (%d)\n"),
-

[SCM] Samba Shared Repository - branch master updated

2020-12-19 Thread Björn Jacke
The branch, master has been updated
   via  18d68e85c8a dns_update.c: handle DNS_QTYPE_ALL
  from  9b44f7a71ec gpo: Apply Group Policy Sudo Rights from VGP

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 18d68e85c8a1ef7fd570d3d3fd4dde484aea417e
Author: Björn Jacke 
Date:   Thu Nov 19 12:18:28 2020 +0100

dns_update.c: handle DNS_QTYPE_ALL

we have code to handle this, we should not refuse the request

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14576

Signed-off-by: Bjoern Jacke 
Reviewed-by: Jeremy Allison 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Sat Dec 19 18:20:30 UTC 2020 on sn-devel-184

---

Summary of changes:
 source4/dns_server/dns_update.c | 1 +
 1 file changed, 1 insertion(+)


Changeset truncated at 500 lines:

diff --git a/source4/dns_server/dns_update.c b/source4/dns_server/dns_update.c
index b6d39e4c034..529ee7894a3 100644
--- a/source4/dns_server/dns_update.c
+++ b/source4/dns_server/dns_update.c
@@ -413,6 +413,7 @@ static WERROR handle_one_update(struct dns_server *dns,
case DNS_QTYPE_:
case DNS_QTYPE_SRV:
case DNS_QTYPE_TXT:
+   case DNS_QTYPE_ALL:
break;
default:
DEBUG(0, ("Can't handle updates of type %u yet\n",


-- 
Samba Shared Repository



[SCM] Samba Shared Repository - branch master updated

2020-10-29 Thread Björn Jacke
The branch, master has been updated
   via  e8f31e5c234 pam_winbind/ro.po: fix error from previous patch merge
  from  9214fcec349 tests: avoid returning an already used ID in randomXid()

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit e8f31e5c23434ca04c921693376624a44dc36849
Author: Björn Jacke 
Date:   Thu Oct 29 17:47:37 2020 +0100

pam_winbind/ro.po: fix error from previous patch merge

fixes up d619a57804d200e351b509d67a8c76042cb9daa8

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14491

Signed-off-by: Bjoern Jacke 
Reviewed-by: Björn Baumbach 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Thu Oct 29 20:49:16 UTC 2020 on sn-devel-184

---

Summary of changes:
 source3/locale/pam_winbind/ru.po | 3 ---
 1 file changed, 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/locale/pam_winbind/ru.po b/source3/locale/pam_winbind/ru.po
index 24c482be46b..1c2ff904be8 100644
--- a/source3/locale/pam_winbind/ru.po
+++ b/source3/locale/pam_winbind/ru.po
@@ -557,6 +557,3 @@ msgstr ""
 #: ../../libsmb/nterr.c:649
 msgid "No more files"
 msgstr ""
-===
-msgstr "Извините, пароли не совпадают"
->>>>>>> s3: update Russian translation of pam_winbind


-- 
Samba Shared Repository



[SCM] Samba Shared Repository - branch master updated

2020-10-28 Thread Björn Jacke
The branch, master has been updated
   via  d619a57804d s3: update Russian translation of pam_winbind
   via  c69d710f20f s3: Rerun genmsg to update pam_winbind after 10 years
   via  c218ad1a0a1 s3: update list of languages in genmsg of pam_winbind
   via  7958abe324f s3: update paths in genmsg of pam_winbind
   via  341adfdf66b s3: fix running genmsg in pure git
  from  3e27dc4847b daemons: report status to systemd even when running in 
foreground

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit d619a57804d200e351b509d67a8c76042cb9daa8
Author: Mikhail Novosyolov 
Date:   Tue Sep 15 02:27:51 2020 +0300

s3: update Russian translation of pam_winbind

Signed-off-by: Mikhail Novosyolov 
Reviewed-by: Björn Jacke 
Reviewed-by: Alexander Bokovoy 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Wed Oct 28 15:31:05 UTC 2020 on sn-devel-184

commit c69d710f20f121975b15a2a240084666d30a6256
Author: Mikhail Novosyolov 
Date:   Tue Sep 15 02:07:50 2020 +0300

s3: Rerun genmsg to update pam_winbind after 10 years

Previous run was in 2010 (10 years ago!), a lot of strings have changed.

Also removed all fuzzies because many strings do not exist any more in 
nterr.c
and then regenerated pos to restore strings that do exist.

I ran:
$ ./genmsg (with previous commits applied)
$ for i in *.po ; do mv -v $i ${i}.t && msgattrib --no-fuzzy -o $i ${i}.t 
&& rm -fv ${i}.t ; done
$ ./genmsg

bjacke edited: don't remove old nterr.c translations, we should keep those
translatins and translate the mappings to the new strings coming from
nterr_gen.c, see b7b289f372535dc479a9c9b7ea80da4711edf4f8 for the related
change.

Signed-off-by: Mikhail Novosyolov 
    Reviewed-by: Björn Jacke 
Reviewed-by: Alexander Bokovoy 

commit c218ad1a0a165380ab711a95cfe61420f9596aba
Author: Mikhail Novosyolov 
Date:   Tue Sep 15 02:05:38 2020 +0300

s3: update list of languages in genmsg of pam_winbind

Removed languages for which translations do not exist.

Signed-off-by: Mikhail Novosyolov 
    Reviewed-by: Björn Jacke 
Reviewed-by: Alexander Bokovoy 

commit 7958abe324ff6428c1eef2591ce366b9c8ee9a15
Author: Mikhail Novosyolov 
Date:   Tue Sep 15 01:58:37 2020 +0300

s3: update paths in genmsg of pam_winbind

Signed-off-by: Mikhail Novosyolov 
    Reviewed-by: Björn Jacke 
Reviewed-by: Alexander Bokovoy 

commit 341adfdf66bdfcdcf8c127430211873750e6a4ee
Author: Mikhail Novosyolov 
Date:   Tue Sep 15 01:54:05 2020 +0300

s3: fix running genmsg in pure git

xgettext wants pam_winbind.po to exist.
Without this running ./genmsg in cloned git fails.

Signed-off-by: Mikhail Novosyolov 
    Reviewed-by: Björn Jacke 
Reviewed-by: Alexander Bokovoy 

---

Summary of changes:
 source3/locale/pam_winbind/ar.po|  83 ++---
 source3/locale/pam_winbind/cs.po|  83 ++---
 source3/locale/pam_winbind/da.po|  83 ++---
 source3/locale/pam_winbind/de.po|  85 +++---
 source3/locale/pam_winbind/es.po|  83 ++---
 source3/locale/pam_winbind/fi.po|  83 ++---
 source3/locale/pam_winbind/fr.po|  79 ++--
 source3/locale/pam_winbind/genmsg   |   6 ++-
 source3/locale/pam_winbind/hu.po|  83 ++---
 source3/locale/pam_winbind/it.po|  83 ++---
 source3/locale/pam_winbind/ja.po|  82 ++---
 source3/locale/pam_winbind/ko.po|  83 ++---
 source3/locale/pam_winbind/nb.po|  83 ++---
 source3/locale/pam_winbind/nl.po|  83 ++---
 source3/locale/pam_winbind/pl.po|  83 ++---
 source3/locale/pam_winbind/pt_BR.po |  83 ++---
 source3/locale/pam_winbind/ru.po| 102 +++-
 source3/locale/pam_winbind/sv.po|  83 ++---
 source3/locale/pam_winbind/tr.po|  86 +++---
 source3/locale/pam_winbind/zh_CN.po |  83 ++---
 source3/locale/pam_winbind/zh_TW.po |  83 ++---
 21 files changed, 852 insertions(+), 833 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/locale/pam_winbind/ar.po b/source3/locale/pam_winbind/ar.po
index 451fe8c7f56..16aa1912e4b 100644
--- a/source3/locale/pam_winbind/ar.po
+++ b/source3/locale/pam_winbind/ar.po
@@ -5,176 +5,177 @@ msgid ""
 msgstr ""
 "Project-Id-Version: pam_winbind\n"
 "Report-Msgid-Bugs-To: \n&q

[SCM] Samba Website Repository - branch master updated

2020-07-08 Thread Björn Jacke
The branch, master has been updated
   via  f903bb0 genereated_news.sh: add feed header for PubSubHubbub/WebSub
  from  44996a0 Add Samba 4.12.5.

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit f903bb0edfcd4a961c1694a4f9fa59dffcf949dc
Author: Björn Jacke 
Date:   Wed Jul 8 21:03:17 2020 +0200

genereated_news.sh: add feed header for PubSubHubbub/WebSub

---

Summary of changes:
 generated_news.sh | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/generated_news.sh b/generated_news.sh
index e0dc7bb..b4be94d 100755
--- a/generated_news.sh
+++ b/generated_news.sh
@@ -54,7 +54,8 @@ generate_feed() {
echo ''
echo 'http://www.w3.org/2005/Atom;>'
echo 'https://www.samba.org/samba/news.atom'
-   echo 'https://www.samba.org/samba/news.atom; 
rel="self"/>'
+   echo 'https://pubsubhubbub.appspot.com/; rel="hub" 
/>'
+   echo 'https://www.samba.org/samba/news.atom; 
rel="self" />'
echo 'Samba - News'
echo ''`date +%Y-%m-%dT%H:%m:%SZ`''
echo
@@ -65,7 +66,7 @@ generate_feed() {
echo ''
MY_UPDATED=`echo $f | sed 
's/^\(\)\(..\)\(..\)-\(..\)\(..\).*/\1-\2-\3T\4:\5:00Z/'`
echo 
"https://www.samba.org/samba/news.atom#$MY_UPDATED"
-   echo ""
+   echo ""
echo 'Samba 
Teamwebmas...@samba.org'
echo "$MY_UPDATED"
 


-- 
Samba Website Repository



[SCM] Samba Shared Repository - branch master updated

2020-06-29 Thread Björn Jacke
The branch, master has been updated
   via  d93a6d2663a util: fix build on AIX by fixing the order of replace.h 
include
  from  db10b14c1b7 s3:smbd: fix the handling of the durable_v2_timeout

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit d93a6d2663a25bca072cd5623aea16e21ed650b8
Author: Bjoern Jacke 
Date:   Mon Jun 29 12:00:46 2020 +

util: fix build on AIX by fixing the order of replace.h include

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14422

Signed-off-by: Bjoern Jacke 
Reviewed-by: Ralph Boehme 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Mon Jun 29 18:19:04 UTC 2020 on sn-devel-184

---

Summary of changes:
 lib/util/tests/test_util_paths.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/lib/util/tests/test_util_paths.c b/lib/util/tests/test_util_paths.c
index b89abf0aea1..4dfe11c1445 100644
--- a/lib/util/tests/test_util_paths.c
+++ b/lib/util/tests/test_util_paths.c
@@ -23,9 +23,9 @@
 #include 
 #include 
 
+#include "lib/replace/replace.h"
 #include 
 
-#include "lib/replace/replace.h"
 #include "lib/util/util_paths.c"
 
 static int setup(void **state)


-- 
Samba Shared Repository



[SCM] Samba Website Repository - branch master updated

2020-05-22 Thread Björn Jacke
The branch, master has been updated
   via  4e620e0 latest_news.html: link to atom feed
  from  7e17a1d fix /samba/ path for feed link

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 4e620e044d404b71f733d59ec2f2d7603602ebce
Author: Björn Jacke 
Date:   Fri May 22 23:14:23 2020 +0200

latest_news.html: link to atom feed

---

Summary of changes:
 latest_news.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/latest_news.html b/latest_news.html
index fec74be..dc76a8d 100755
--- a/latest_news.html
+++ b/latest_news.html
@@ -21,7 +21,7 @@ Servers and Desktops into Active Directory environments using 
the
 winbind daemon.
 
 
-Latest News
+Latest News 
 
 
 


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2020-05-20 Thread Björn Jacke
The branch, master has been updated
   via  7e17a1d fix /samba/ path for feed link
  from  320dbdf generated_news.sh: add atom feed generation

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 7e17a1de6f55865ab993676c0a55816525627505
Author: Björn Jacke 
Date:   Wed May 20 16:00:58 2020 +0200

fix /samba/ path for feed link

---

Summary of changes:
 index.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/index.html b/index.html
index c2ff3ab..ab74514 100644
--- a/index.html
+++ b/index.html
@@ -69,7 +69,7 @@
 

Further News 
-   
+   





-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2020-05-20 Thread Björn Jacke
The branch, master has been updated
   via  320dbdf generated_news.sh: add atom feed generation
   via  9a65a64 link to samba/news.atom feed and add feed icon under the 
news box
   via  09aca81 fix double 
   via  a7e6fd0 add feed logo rss_small.png
  from  e27c430 Add Samba 4.12.3 to the list.

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 320dbdf6bd09fb6324d4351e2a1633ff76cd6876
Author: Björn Jacke 
Date:   Wed May 20 15:52:54 2020 +0200

generated_news.sh: add atom feed generation

commit 9a65a64327180b575d4e5b442e9b594af9c7fa03
Author: Björn Jacke 
Date:   Wed May 20 15:44:32 2020 +0200

link to samba/news.atom feed and add feed icon under the news box

commit 09aca81a8cf1804c35214fd2dbd226cc7e480699
Author: Björn Jacke 
Date:   Wed May 20 15:29:13 2020 +0200

fix double 

commit a7e6fd0b8a56742990e64638c6861bb75120b12e
Author: Björn Jacke 
Date:   Wed May 20 11:28:25 2020 +0200

add feed logo rss_small.png

---

Summary of changes:
 generated_news.sh|  49 +++
 index.html   |   3 +-
 posted_news/20200428-071935.4.12.2.body.html |   1 -
 rss_small.png| Bin 0 -> 764 bytes
 4 files changed, 51 insertions(+), 2 deletions(-)
 create mode 100644 rss_small.png


Changeset truncated at 500 lines:

diff --git a/generated_news.sh b/generated_news.sh
index a8652cd..e0dc7bb 100755
--- a/generated_news.sh
+++ b/generated_news.sh
@@ -38,6 +38,54 @@ generate() {
return 0
 }
 
+generate_feed() {
+   local dst="$1"
+   local count="$2"
+   local filter="$3"
+
+   test "${dst}" -nt "posted_news/" && {
+   echo "${dst}: up to date"
+   return 0
+   }
+
+   echo "${dst}: regenerating"
+   files=$(find posted_news/ -type f -regex "${filter}" -printf "%f\n" | 
sort -r | xargs)
+   {
+   echo ''
+   echo 'http://www.w3.org/2005/Atom;>'
+   echo 'https://www.samba.org/samba/news.atom'
+   echo 'https://www.samba.org/samba/news.atom; 
rel="self"/>'
+   echo 'Samba - News'
+   echo ''`date +%Y-%m-%dT%H:%m:%SZ`''
+   echo
+   for f in ${files}; do
+   if [[ "$filter" == *snip* ]] && [[ "$f" == 
*".body.html"* ]] && [[ "$files" == *"${f%.body.html}.snip.html"* ]]; then
+   continue
+   fi
+   echo ''
+   MY_UPDATED=`echo $f | sed 
's/^\(\)\(..\)\(..\)-\(..\)\(..\).*/\1-\2-\3T\4:\5:00Z/'`
+   echo 
"https://www.samba.org/samba/news.atom#$MY_UPDATED"
+   echo ""
+   echo 'Samba 
Teamwebmas...@samba.org'
+   echo "$MY_UPDATED"
+
+   cat posted_news/$f \
+   | perl -pe '$/=""; s/(.*?)<\/p>/$1<\/title>/s' \
+   | grep -v '' \
+   | grep -v '
 
 
@@ -69,6 +69,7 @@
 

Further News 
+   



diff --git a/posted_news/20200428-071935.4.12.2.body.html 
b/posted_news/20200428-071935.4.12.2.body.html
index 730c9d9..60ab28f 100644
--- a/posted_news/20200428-071935.4.12.2.body.html
+++ b/posted_news/20200428-071935.4.12.2.body.html
@@ -9,7 +9,6 @@ These are security releases in order to address
 CVE-2020-10704
 (LDAP Denial of Service (stack overflow) in Samba AD DC).
 
-
 
 The uncompressed tarballs have been signed using GnuPG (ID 6F33915B6568B7EA).
 The 4.12.2 source code can be 

[SCM] Samba Shared Repository - branch master updated

2020-05-19 Thread Björn Jacke
The branch, master has been updated
   via  799387963c4 add some missing FSCTL defines
   via  14470e4e4c1 docs-xml: update list of posible VFS operations for 
vfs_full_audit
   via  f57673d89e3 docs: improve desription of map acl inherit
  from  ec312ee6fe5 tevent: Fix a tevent tutorial error

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 799387963c4a1fc707b975b24a12e5e112273042
Author: Björn Jacke 
Date:   Wed May 6 17:45:29 2020 +0200

add some missing FSCTL defines

as dodumented in


https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-smb2/a64e55aa-1152-48e4-8206-edd96444e7f7

FSCTL_SET_OBJECT_ID_EXTENDED
FSCTL_READ_FILE_USN_DATA
FSCTL_WRITE_USN_CLOSE_RECORD
FSCTL_QUERY_ON_DISK_VOLUME_INFO
FSCTL_QUERY_SPARING_INFO
FSCTL_DUPLICATE_EXTENTS_TO_FILE_EX
FSCTL_STORAGE_QOS_CONTROL

Signed-off-by: Bjoern Jacke 
Reviewed-by: Ralph Boehme 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Tue May 19 15:57:08 UTC 2020 on sn-devel-184

commit 14470e4e4c16cfc36384027c39c1685dea42ad26
Author: Björn Jacke 
Date:   Tue May 19 12:42:31 2020 +0200

docs-xml: update list of posible VFS operations for vfs_full_audit

the list of valid operations can be generated by

grep "{ SMB_VFS_OP_" source3/modules/vfs_full_audit.c |sed 's/.*,[ 
\t]*"//;s/".*//'|grep -v NULL | sort

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14386

Signed-off-by: Bjoern Jacke 
Reviewed-by: Ralph Boehme 

commit f57673d89e3f404cbdf7c975fa0ae08d5f47f6b0
Author: Björn Jacke 
Date:   Thu May 7 16:00:14 2020 +0200

docs: improve desription of map acl inherit

Signed-off-by: Bjoern Jacke 
Reviewed-by: Ralph Boehme 

---

Summary of changes:
 docs-xml/manpages/vfs_full_audit.8.xml | 73 --
 docs-xml/smbdotconf/protocol/mapaclinherit.xml |  8 +--
 libcli/smb/smb_constants.h |  8 +++
 3 files changed, 69 insertions(+), 20 deletions(-)


Changeset truncated at 500 lines:

diff --git a/docs-xml/manpages/vfs_full_audit.8.xml 
b/docs-xml/manpages/vfs_full_audit.8.xml
index 7b17e2e1ad4..674b032017d 100644
--- a/docs-xml/manpages/vfs_full_audit.8.xml
+++ b/docs-xml/manpages/vfs_full_audit.8.xml
@@ -38,60 +38,97 @@
complete set of Samba VFS operations:
 

+aio_force
+audit_file
+brl_lock_windows
+brl_unlock_windows
 chdir
 chflags
 chmod
-chown
 close
 closedir
 connect
-   copy_chunk_send
-   copy_chunk_recv
+connectpath
+create_dfs_pathat
+create_file
 disconnect
 disk_free
+durable_cookie
+durable_disconnect
+durable_reconnect
+fallocate
 fchmod
 fchown
-fget_nt_acl
+fdopendir
+fget_dos_attributes
+fget_nt_acl_at
 fgetxattr
+file_id_create
 flistxattr
 fremovexattr
+fs_capabilities
+fsctl
+fset_dos_attributes
 fset_nt_acl
 fsetxattr
+fs_file_id
 fstat
 fsync
+fsync_recv
+fsync_send
 ftruncate
+get_alloc_size
 get_compression
+get_dfs_referrals
+get_dos_attributes
+get_dos_attributes_recv
+get_dos_attributes_send
+getlock
 get_nt_acl
 get_quota
+get_real_filename
 get_shadow_copy_data
-getlock
 getwd
 getxattr
+getxattrat_recv
+getxattrat_send
+is_offline
 kernel_flock
-link
+lchown
+linkat
 linux_setlease
 listxattr
 lock
 lseek
 lstat
-mkdir
-mknod
+mkdirat
+mknodat
+ntimes
+offload_read_recv
+offload_read_send
+offload_write_recv
+offload_write_send
 open
-opendir
 pread
+pread_recv
+pread_send
 pwrite
+pwrite_recv
+pwrite_send
 read
 readdir
-readlink
+readdir_attr
+readlinkat
 realpath
+recvfile
 removexattr
-rename
+renameat
 rewinddir
-rmdir
 seekdir
 sendfile
 set_compression
-set_nt_acl
+set_dos_attributes
+set_offline
 set_quota
 setxattr
 snap_check_path
@@ -99,15 +136,19 @@
 snap_delete
 stat
 statvfs
-symlink
+streaminfo
+strict_lock_check
+symlinkat
+sys_acl_blob_get_fd
+sys_acl_blob_get_file
 sys_acl_delete_def_file
   

[SCM] Samba Website Repository - branch master updated

2020-05-02 Thread Björn Jacke
The branch, master has been updated
   via  ad435d1 make dark mode dark less black
  from  7c4289b Fix typo.

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit ad435d1f710d6a6b69a0510a0a5f937be9dc1868
Author: Björn Jacke 
Date:   Sun May 3 03:12:42 2020 +0200

make dark mode dark less black

---

Summary of changes:
 style/2010/grey/screen.css | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/style/2010/grey/screen.css b/style/2010/grey/screen.css
index de63699..05f5dd9 100644
--- a/style/2010/grey/screen.css
+++ b/style/2010/grey/screen.css
@@ -14,7 +14,7 @@
 
 @media(prefers-color-scheme: dark) {
   :root {
-  --main-bg-color: black;
+  --main-bg-color: #222;
   --main-text-color: #dd;
   --link-blue: #9cd6fc;
   --headline-color: #fff;


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2020-04-26 Thread Björn Jacke
The branch, master has been updated
   via  116369d clean up urls and tools that went away
  from  eac22bb some fixes, cleanups and new tools linked

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 116369db447dc5a2095e3f979741ed7eb22c48fe
Author: Björn Jacke 
Date:   Sun Apr 26 14:49:40 2020 +0200

clean up urls and tools that went away

---

Summary of changes:
 GUI/index.html | 17 -
 1 file changed, 17 deletions(-)


Changeset truncated at 500 lines:

diff --git a/GUI/index.html b/GUI/index.html
index 854ccbb..df9685d 100755
--- a/GUI/index.html
+++ b/GUI/index.html
@@ -12,16 +12,6 @@ starting to happen.
 of them are listed below and I will add the others as soon as I can
 find the URLs.
 
-GOsa - A  PHP-based administration tool for role-based managing of
-accounts and systems in LDAP databases.
-
-http://alioth.debian.org/projects/gosa;>GOsa is a
-PHP-based administration tool for role-based managing of accounts and
-systems in LDAP databases. Standard configurations can manage generic,
-POSIX/shadow, postfix/cyrus/sieve, pureftpd, fax, and samba 2/3
-accounts in LDAP. It has plugins for system/terminal management. The
-look and feel can be easily adapted to users' needs.
-
 Smb4K - An SMB share browser for KDE
 
 http://smb4k.sf.net;>Smb4K is an SMB share
@@ -113,13 +103,6 @@ part of his Liveserver. It can be found
 
 -->
 
-tksmb - Tk Frontend For Smbclient
-
-http://www.rt.mipt.ru/~ivan/TkSmb/;>TkSmb
-provides you a graphical interface for browsing Windows networks.
-TkSmb does this by being a graphical wrapper around Samba's smbclient
-program. Using this program you can easily access different workgroups,
-hosts, and shares on it, mount this shares.
 
 

[SCM] Samba Website Repository - branch master updated

2020-04-26 Thread Björn Jacke
The branch, master has been updated
   via  eac22bb some fixes, cleanups and new tools linked
  from  68d6ae9 place searchbox inside banner

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit eac22bbce1e6dd5a9b15eff3f4397df7b7d65d84
Author: Björn Jacke 
Date:   Sun Apr 26 14:14:29 2020 +0200

some fixes, cleanups and new tools linked

---

Summary of changes:
 download/index.html | 16 +---
 1 file changed, 9 insertions(+), 7 deletions(-)


Changeset truncated at 500 lines:

diff --git a/download/index.html b/download/index.html
index cf74742..8bd1dec 100755
--- a/download/index.html
+++ b/download/index.html
@@ -3,7 +3,7 @@
 
 Download
 
-The Samba source code is distributed via https.  View the download
+The Samba source code is distributed via https. View the download
 area https://download.samba.org/pub/samba/;>via HTTPS.  The file 
you probably want
 is called https://download.samba.org/pub/samba/samba-latest.tar.gz;>samba-latest.tar.gz.
 Old releases are available in the https://download.samba.org/pub/samba/old-versions/;>Samba 
archives.
@@ -41,9 +41,9 @@ gpg: Good signature from Samba Distribution Verification 
Key \
   native install of samba on your system.
 
   https://samba.plus/;>https://samba.plus/
-  offers Samba packages for SLES, RHEL, and Debian.
+  offers Samba packages for SLES, RHEL, and Debian and AIX.
 
-  http://en.openSUSE.org/Samba;>http://en.openSUSE.org/Samba
+  https://en.openSUSE.org/Samba;>http://en.openSUSE.org/Samba
   offers Samba packages for all SuSE Linux products (including SLES).
 
 
@@ -68,13 +68,16 @@ gpg: Good signature from Samba Distribution 
Verification Key \
Samba GUI managers
https://www.wireshark.org/;>Wireshark (decodes 
NetBIOS,
 SMB/CIFS,  MS-RPC)
-   http://www.tcpdump.org/;>tcpdump (command line
+   https://www.tcpdump.org/;>tcpdump (command line
 packet sniffer)
http://www.tux.org/pub/security/secnet/tools/nat10/;>NetBIOSAuditing
 Tool(NAT)
+   https://github.com/christgau/wsdd;>wsdd is a Web 
Service Discovery (WSD) daemon written in Python
+   https://github.com/Andy2244/wsdd2;>wsdd2 is a 
WSD/LLMNR dicovery daemon written in C
+
http://nbfw.sourceforge.net;>nbfw, the NetBIOS
-forwarder
+forwarder (obsolete)
   
  
 
@@ -86,8 +89,7 @@ forwarder
 
   
Linux CIFS VFS
-http://www.thursby.com/products/dave;>Dave 
(Macintosh)
-http://www.tarantella.com/products/vision/family/#vfs;>VisionFS
+http://www.thursby.com/products/dave;>Dave 
(Macintosh) (obslete)
   
 
 


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2020-04-25 Thread Björn Jacke
The branch, master has been updated
   via  68d6ae9 place searchbox inside banner
  from  5fab003 add border radius is opacity to sitemap and header image

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 68d6ae9dafd287dbe5f2531d4ea323b3d70dc4b6
Author: Björn Jacke 
Date:   Sun Apr 26 04:24:21 2020 +0200

place searchbox inside banner

---

Summary of changes:
 header_style.html  | 19 +--
 header_style_start.html| 18 +-
 style/2010/grey/screen.css | 12 +++-
 3 files changed, 25 insertions(+), 24 deletions(-)


Changeset truncated at 500 lines:

diff --git a/header_style.html b/header_style.html
index a13d4da..fae24f8 100755
--- a/header_style.html
+++ b/header_style.html
@@ -19,17 +19,16 @@



-   
-   https://duckduckgo.com; method="get">
-   search samba.org:
-   
-   
-   
-   
+   
+   
+   https://duckduckgo.com; method="get">
+   search samba.org:
+   
+   
+   
+   
+   

-   
-   
-   



diff --git a/header_style_start.html b/header_style_start.html
index faca7d6..fe2d280 100644
--- a/header_style_start.html
+++ b/header_style_start.html
@@ -19,17 +19,17 @@



-   
-   https://duckduckgo.com; method="get">
-   search samba.org:
-   
-   
-   
-   
+   
+   
+   https://duckduckgo.com; method="get">
+   search samba.org:
+   
+   
+   
+   
+   


-   
-   



diff --git a/style/2010/grey/screen.css b/style/2010/grey/screen.css
index 28c8d4b..de63699 100644
--- a/style/2010/grey/screen.css
+++ b/style/2010/grey/screen.css
@@ -187,28 +187,30 @@ body * {
 }
 
 /* search form */
-#hd #search {
+#hd #bannerStart #search {
+   border-right:10px;
float: right;
clear: both;
 }
 
-#hd #search label {
+#hd #bannerStart #search label {
font-family: Georgia, serif;
font-weight: bold;
 }
 
-#hd #search #searchString {
+#hd #bannerStart #search #searchString {
width: 128px;
height: 17px;
-   margin: 0 2px;
+   margin-right: 10pt;
padding: 0 1px;
border: 1px solid #585858;
color: var(--main-text-color);
 }
 
-#hd #search #searchButton {
+#hd #bannerStart #search #searchButton {
position: relative;
top: 5px;
+   right: 9px;
 }
 
 /* banner */


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2020-04-25 Thread Björn Jacke
The branch, master has been updated
   via  5fab003 add border radius is opacity to sitemap and header image
  from  0c8aa84 add bgBoxMainBottom.webp

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 5fab0034f1f45094f92d34a6aae05755f510d3fe
Author: Björn Jacke 
Date:   Sun Apr 26 01:37:05 2020 +0200

add border radius is opacity to sitemap and header image

---

Summary of changes:
 style/2010/grey/screen.css | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/style/2010/grey/screen.css b/style/2010/grey/screen.css
index ddae91e..28c8d4b 100644
--- a/style/2010/grey/screen.css
+++ b/style/2010/grey/screen.css
@@ -203,6 +203,7 @@ body * {
margin: 0 2px;
padding: 0 1px;
border: 1px solid #585858;
+   color: var(--main-text-color);
 }
 
 #hd #search #searchButton {
@@ -223,7 +224,7 @@ body * {
float: right;
height: 139px;
width: 100%;
-   background-image: url(bgHeader.png);
+   background-image: url(bgHeader.png); border-radius: 20px; opacity: 0.7;
background-position: 0 0;
background-repeat: no-repeat;
 }
@@ -420,7 +421,7 @@ body * {
min-height: 150px;
padding: 24px 0 0 173px;
background-color: #8f9994;
-   background-image: url(bgSitemap.gif);
+   background-image: url(bgSitemap.gif); border-radius: 10px 10px 0px 0px;
background-position: 0 0;
background-repeat: no-repeat;
 }


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2020-04-25 Thread Björn Jacke
The branch, master has been updated
   via  0c8aa84 add bgBoxMainBottom.webp
  from  479ad4a add and use webp bgBoxMainBottom version with alpha chanel

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 0c8aa846da4b7337a1f2572aa3efb10f1d65c73b
Author: Björn Jacke 
Date:   Sun Apr 26 00:51:50 2020 +0200

add bgBoxMainBottom.webp

---

Summary of changes:
 style/2010/grey/bgBoxMainBottom.webp | Bin 0 -> 260 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)
 create mode 100644 style/2010/grey/bgBoxMainBottom.webp


Changeset truncated at 500 lines:

diff --git a/style/2010/grey/bgBoxMainBottom.webp 
b/style/2010/grey/bgBoxMainBottom.webp
new file mode 100644
index 000..3c1912c
Binary files /dev/null and b/style/2010/grey/bgBoxMainBottom.webp differ


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2020-04-25 Thread Björn Jacke
The branch, master has been updated
   via  479ad4a add and use webp bgBoxMainBottom version with alpha chanel
  from  5f46ac4 use --link-blue var for links in boxes also

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 479ad4ab728a9b95b911ebda245771a90c2a19cb
Author: Björn Jacke 
Date:   Sun Apr 26 00:21:21 2020 +0200

add and use webp bgBoxMainBottom version with alpha chanel

---

Summary of changes:
 style/2010/grey/screen.css | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/style/2010/grey/screen.css b/style/2010/grey/screen.css
index 0d657b5..ddae91e 100644
--- a/style/2010/grey/screen.css
+++ b/style/2010/grey/screen.css
@@ -404,7 +404,7 @@ body * {
height: 16px;
left: 0;
bottom: 0;
-   background-image: url(bgBoxMainBottom.gif);
+   background-image: url(bgBoxMainBottom.webp);
background-position: 0 100%;
background-repeat: no-repeat;
 }


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2020-04-25 Thread Björn Jacke
The branch, master has been updated
   via  5f46ac4 use --link-blue var for links in boxes also
  from  099b7b7 use webp version of bgBoxSpecialBottom with alpha chanel

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 5f46ac4064ce76cf3899a9c03a304a9605794dc9
Author: Björn Jacke 
Date:   Sun Apr 26 00:03:29 2020 +0200

use --link-blue var for links in boxes also

---

Summary of changes:
 style/2010/grey/screen.css | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/style/2010/grey/screen.css b/style/2010/grey/screen.css
index 4e9bb3d..0d657b5 100644
--- a/style/2010/grey/screen.css
+++ b/style/2010/grey/screen.css
@@ -393,7 +393,7 @@ body * {
 #bd .mainBox .mainBoxContent a:visited,
 #bd .mainBox .mainBoxContent a:active,
 #bd .mainBox .mainBoxContent a[href]:hover {
-   color: #045d9a;
+   color: var(--link-blue);
font-size: 11px;
line-height: 15px;
 }
@@ -594,7 +594,7 @@ body * {
 #bd .specialBox .specialBoxContent a:visited,
 #bd .specialBox .specialBoxContent a:active,
 #bd .specialBox .specialBoxContent a[href]:hover {
-   color: #045d9a;
+   color: var(--link-blue);
font-size: 11px;
line-height: 15px;
 }


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2020-04-25 Thread Björn Jacke
The branch, master has been updated
   via  099b7b7 use webp version of bgBoxSpecialBottom with alpha chanel
   via  10b7bdc add bgBoxSpecialBottom.webp with alpha chanel
  from  7077d7d use new transparent bgBoxSpecial webp version

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 099b7b7412da2ae75f6041a2cff364f88c5dddea
Author: Björn Jacke 
Date:   Sat Apr 25 23:57:45 2020 +0200

use webp version of bgBoxSpecialBottom with alpha chanel

commit 10b7bdc1e1b62d2fdb848a3a6091610877f2edee
Author: Björn Jacke 
Date:   Sat Apr 25 23:54:54 2020 +0200

add bgBoxSpecialBottom.webp with alpha chanel

---

Summary of changes:
 style/2010/grey/bgBoxSpecialBottom.webp | Bin 0 -> 264 bytes
 style/2010/grey/screen.css  |   2 +-
 2 files changed, 1 insertion(+), 1 deletion(-)
 create mode 100644 style/2010/grey/bgBoxSpecialBottom.webp


Changeset truncated at 500 lines:

diff --git a/style/2010/grey/bgBoxSpecialBottom.webp 
b/style/2010/grey/bgBoxSpecialBottom.webp
new file mode 100644
index 000..8724e93
Binary files /dev/null and b/style/2010/grey/bgBoxSpecialBottom.webp differ
diff --git a/style/2010/grey/screen.css b/style/2010/grey/screen.css
index e5292f6..4e9bb3d 100644
--- a/style/2010/grey/screen.css
+++ b/style/2010/grey/screen.css
@@ -605,7 +605,7 @@ body * {
height: 16px;
left: 0;
bottom: 0;
-   background-image: url(bgBoxSpecialBottom.gif);
+   background-image: url(bgBoxSpecialBottom.webp);
background-position: 0 100%;
background-repeat: no-repeat;
 }


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2020-04-25 Thread Björn Jacke
The branch, master has been updated
   via  7077d7d use new transparent bgBoxSpecial webp version
  from  292df4b add bgBoxSpecial.webp with alpha chanel

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 7077d7de7425736f8a6f55c9b66b72742e21f1bc
Author: Björn Jacke 
Date:   Sat Apr 25 22:30:25 2020 +0200

use new transparent bgBoxSpecial webp version

---

Summary of changes:
 style/2010/grey/screen.css | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/style/2010/grey/screen.css b/style/2010/grey/screen.css
index 6748635..e5292f6 100644
--- a/style/2010/grey/screen.css
+++ b/style/2010/grey/screen.css
@@ -490,7 +490,7 @@ body * {
position: relative;
left: -2px;
width: 189px;
-   background-image: url(bgBoxSpecial.gif);
+   background-image: url(bgBoxSpecial.webp);
background-position: 0 0;
background-repeat: no-repeat;
margin: 12px 0 0;


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2020-04-25 Thread Björn Jacke
The branch, master has been updated
   via  292df4b add bgBoxSpecial.webp with alpha chanel
  from  b3f4a29 use webp image for boxes

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 292df4bd20862660e25a9a9ff4fa852aeaffa4ed
Author: Björn Jacke 
Date:   Sat Apr 25 22:29:06 2020 +0200

add bgBoxSpecial.webp with alpha chanel

---

Summary of changes:
 style/2010/grey/bgBoxSpecial.webp | Bin 0 -> 1290 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)
 create mode 100644 style/2010/grey/bgBoxSpecial.webp


Changeset truncated at 500 lines:

diff --git a/style/2010/grey/bgBoxSpecial.webp 
b/style/2010/grey/bgBoxSpecial.webp
new file mode 100644
index 000..e1c1986
Binary files /dev/null and b/style/2010/grey/bgBoxSpecial.webp differ


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2020-04-25 Thread Björn Jacke
The branch, master has been updated
   via  b3f4a29 use webp image for boxes
   via  b8584dc add bgBoxMain.webp with alpha channel
  from  559504d screen.css: adopt for clients prefering dark mode

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit b3f4a2942a88386234a748746050bf34d12ea9c8
Author: Björn Jacke 
Date:   Sat Apr 25 22:15:29 2020 +0200

use webp image for boxes

commit b8584dc1e2b9b61f1a6a4a644d959d525572d994
Author: Björn Jacke 
Date:   Sat Apr 25 22:12:44 2020 +0200

add bgBoxMain.webp with alpha channel

---

Summary of changes:
 style/2010/grey/bgBoxMain.webp | Bin 0 -> 432 bytes
 style/2010/grey/print.css  |   2 +-
 style/2010/grey/screen.css |   2 +-
 3 files changed, 2 insertions(+), 2 deletions(-)
 create mode 100644 style/2010/grey/bgBoxMain.webp


Changeset truncated at 500 lines:

diff --git a/style/2010/grey/bgBoxMain.webp b/style/2010/grey/bgBoxMain.webp
new file mode 100644
index 000..8b72061
Binary files /dev/null and b/style/2010/grey/bgBoxMain.webp differ
diff --git a/style/2010/grey/print.css b/style/2010/grey/print.css
index 654b7de..e01ed69 100644
--- a/style/2010/grey/print.css
+++ b/style/2010/grey/print.css
@@ -200,7 +200,7 @@ body * {
 
 #bd .mainBox {
width: 48%;
-   background-image: url(bgBoxMain.gif);
+   background-image: url(bgBoxMain.webp);
background-position: 0 0;
background-repeat: no-repeat;
margin: 26px 0 0;
diff --git a/style/2010/grey/screen.css b/style/2010/grey/screen.css
index 94fc233..6748635 100644
--- a/style/2010/grey/screen.css
+++ b/style/2010/grey/screen.css
@@ -345,7 +345,7 @@ body * {
 #bd .mainBox {
position: relative;
width: 247px;
-   background-image: url(bgBoxMain.gif);
+   background-image: url(bgBoxMain.webp);
background-position: 0 0;
background-repeat: no-repeat;
margin: 26px 0 0;


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2020-04-25 Thread Björn Jacke
The branch, master has been updated
   via  559504d screen.css: adopt for clients prefering dark mode
  from  4dc471c use webp version on bg image

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 559504dc101528f2f18f9f08e7c14a621337d996
Author: Björn Jacke 
Date:   Sat Apr 25 20:58:27 2020 +0200

screen.css: adopt for clients prefering dark mode

TODO: get rid of gifs (and use plain css instead) for the boxes, which does 
not
fit at all for dynamic dark mode adoption.

---

Summary of changes:
 style/2010/grey/screen.css | 43 +++
 1 file changed, 35 insertions(+), 8 deletions(-)


Changeset truncated at 500 lines:

diff --git a/style/2010/grey/screen.css b/style/2010/grey/screen.css
index b0519b1..94fc233 100644
--- a/style/2010/grey/screen.css
+++ b/style/2010/grey/screen.css
@@ -3,9 +3,36 @@
  */
 
 /* general styles -*/
+:root {
+  --main-bg-color: #ff;
+  --main-text-color: black;
+  --link-blue: #045d9a;
+  --headline-color: #66;
+  --main-box-bg-color: #c0c0c0;
+  --main-pre-bg-color: #c99;
+}
+
+@media(prefers-color-scheme: dark) {
+  :root {
+  --main-bg-color: black;
+  --main-text-color: #dd;
+  --link-blue: #9cd6fc;
+  --headline-color: #fff;
+  --main-box-bg-color: #333;
+  --main-pre-bg-color: #a09;
+  }
+  a:link {
+color: red;
+  }
+  a:visited {
+color: green;
+  }
+
+}
+
 html {
-   color: #33;
-   background: #ff;
+   color: var(--main-text-color);
+   background: var(--main-bg-color);
 }
 
 body,
@@ -132,8 +159,8 @@ pre, code, kbd, samp, tt {
 }
 
 body {
-   background-color: #ff;
-   color: #33;
+   background-color: var(--main-bg-color);
+   color: var(--main-fg-color);
font-size: 13px;
line-height: 16px;
font-family: Arial, sans-serif;
@@ -262,7 +289,7 @@ body * {
 #bd #nav ul ul li a:link,
 #bd #nav ul ul li a:visited,
 #bd #nav ul ul li a:active {
-   color: #474747;
+   color: #000;
font-size: 11px;
line-height: 13px;
/* margin: 1px 0 0; */
@@ -624,7 +651,7 @@ h2 {
 }
 
 #pageStart h2 {
-   color: #66;
+   color: var(--headline-color);
font-size: 24px;
font-weight: normal;
line-height: 32px;
@@ -632,7 +659,7 @@ h2 {
 }
 
 h3 {
-   color: #66;
+   color: var(--headline-color);
font-size: 16px;
font-weight: bold;
font-family: Georgia, serif;
@@ -657,7 +684,7 @@ a:link,
 a:visited,
 a:active,
 a[href]:hover {
-   color: #045d9a;
+   color: var(--link-blue);
font-size: 13px;
line-height: 16px;
text-decoration: none;


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2020-04-25 Thread Björn Jacke
The branch, master has been updated
   via  4dc471c use webp version on bg image
  from  1915f3b add webp version ob bg image with alpha channel

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 4dc471cc65184a7b07af2c5525a174fd782e4301
Author: Björn Jacke 
Date:   Sat Apr 25 20:10:09 2020 +0200

use webp version on bg image

---

Summary of changes:
 style/2010/grey/screen.css | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/style/2010/grey/screen.css b/style/2010/grey/screen.css
index 93fc28e..b0519b1 100644
--- a/style/2010/grey/screen.css
+++ b/style/2010/grey/screen.css
@@ -148,7 +148,7 @@ body * {
 #page,
 #pageStart {
width: 986px;
-   background-image: url(bg.jpg);
+   background-image: url(bg.webp);
background-position: 0 0;
background-repeat: no-repeat;
 }


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2020-04-25 Thread Björn Jacke
The branch, master has been updated
   via  1915f3b add webp version ob bg image with alpha channel
  from  7e102d4 Add Samba 4.12.1 to the list.

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 1915f3b44c4f841cc7dce42b39060b4670950cc9
Author: Björn Jacke 
Date:   Sat Apr 25 20:09:02 2020 +0200

add webp version ob bg image with alpha channel

---

Summary of changes:
 style/2010/grey/bg.webp | Bin 0 -> 51332 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)
 create mode 100644 style/2010/grey/bg.webp


Changeset truncated at 500 lines:

diff --git a/style/2010/grey/bg.webp b/style/2010/grey/bg.webp
new file mode 100644
index 000..ba76a09
Binary files /dev/null and b/style/2010/grey/bg.webp differ


-- 
Samba Website Repository



[SCM] Samba Shared Repository - branch master updated

2020-01-03 Thread Björn Jacke
The branch, master has been updated
   via  03b42aeb811 python/loadparm: check for AD DC required VFS modules
   via  4d4443d1e53 loadparm: check for AD DC required VFS modules
  from  1d0ffcf30e6 smbd: Remove an unused parameter from defer_open()

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 03b42aeb811ae7260a9a9e197212767877484a78
Author: Björn Jacke 
Date:   Fri Jan 3 15:29:34 2020 +0100

python/loadparm: check for AD DC required VFS modules

same as the previous commit, just for python's testparm code

Bug: https://bugzilla.samba.org/show_bug.cgi?id=10560

Signed-off-by: Bjoern Jacke 
Reviewed-by: David Disseldorp 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Fri Jan  3 22:19:47 UTC 2020 on sn-devel-184

commit 4d4443d1e539c1ce0f7245fbcffbf22df8355b2d
Author: David Disseldorp 
Date:   Fri Jan 3 14:31:28 2020 +0100

loadparm: check for AD DC required VFS modules

When Samba is running as a domain controller and the "vfs objects"
parameter is not set, then the dfs_samba4 and acl_xattr modules are
automatically enabled.
However, if the "vfs objects" is defined, then the setting is left
as-is. This means that attempts to us other VFS modules have the side
effect of disabling the dfs_samba4 and acl_xattr modules, causing
unexpected behaviour, which is then blamed on the VFS modules that were
explicitly defined.

This change ensures that when running as a domain controller, Samba logs
an error if the required VFS modules are not enabled by an explicit
"vfs objects" definition.

Bug: https://bugzilla.samba.org/show_bug.cgi?id=10560

Signed-off-by: David Disseldorp 
Reviewed-by: Björn Jacke 

---

Summary of changes:
 python/samba/netcmd/testparm.py | 18 +-
 source3/param/loadparm.c| 37 -
 2 files changed, 49 insertions(+), 6 deletions(-)


Changeset truncated at 500 lines:

diff --git a/python/samba/netcmd/testparm.py b/python/samba/netcmd/testparm.py
index bf566f38d78..aef24bf5c8d 100644
--- a/python/samba/netcmd/testparm.py
+++ b/python/samba/netcmd/testparm.py
@@ -157,12 +157,20 @@ class cmd_testparm(Command):
 valid = False
 
 role = lp.get("server role")
-charset = lp.get("unix charset").upper()
 
-if role in ["active directory domain controller", "domain controller", 
"dc"] and charset not in ["UTF-8", "UTF8"]:
-logger.warning(
-"When acting as Active Directory domain controller, "
-"unix charset is expected to be UTF-8.")
+if role in ["active directory domain controller", "domain controller", 
"dc"]:
+charset = lp.get("unix charset").upper()
+if charset not in ["UTF-8", "UTF8"]:
+logger.warning(
+"When acting as Active Directory domain controller, "
+"unix charset is expected to be UTF-8.")
+vfsobjects = lp.get("vfs objects")
+if vfsobjects:
+for entry in ['dfs_samba4', 'acl_xattr']:
+if entry not in vfsobjects:
+logger.warning(
+"When acting as Active Directory domain 
controller, " +
+entry + " should be in vfs objects.")
 
 return valid
 
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c
index bef24b6821b..ce41477097a 100644
--- a/source3/param/loadparm.c
+++ b/source3/param/loadparm.c
@@ -2740,6 +2740,38 @@ static bool do_parameter(const char *pszParmName, const 
char *pszParmValue,
}
 }
 
+
+static const char *ad_dc_req_vfs_mods[] = {"dfs_samba4", "acl_xattr", NULL};
+
+/*
+ * check that @vfs_objects includes all vfs modules required by an AD DC.
+ */
+static bool check_ad_dc_required_mods(const char **vfs_objects)
+{
+   int i;
+   int j;
+   int got_req;
+
+   for (i = 0; ad_dc_req_vfs_mods[i] != NULL; i++) {
+   got_req = false;
+   for (j = 0; vfs_objects[j] != NULL; j++) {
+   if (!strwicmp(ad_dc_req_vfs_mods[i], vfs_objects[j])) {
+   got_req = true;
+   break;
+   }
+   }
+   if (!got_req) {
+   DEBUG(0, ("vfs objects specified without required AD "
+ "DC module: %s\n", ad_dc_req_vfs_mods[i]));
+  

[SCM] Samba Website Repository - branch master updated

2019-11-05 Thread Björn Jacke
The branch, master has been updated
   via  a90d7ae Dentar wants to be removed
  from  709eebc Add missing description

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit a90d7ae89ec1abff03b9a0c745bfb11c68742795
Author: Björn Jacke 
Date:   Tue Nov 5 18:19:45 2019 +0100

Dentar wants to be removed

---

Summary of changes:
 support/us.html | 25 -
 1 file changed, 25 deletions(-)


Changeset truncated at 500 lines:

diff --git a/support/us.html b/support/us.html
index ab3a925..ea4d6cf 100644
--- a/support/us.html
+++ b/support/us.html
@@ -156,31 +156,6 @@ training/mentoring services.
 
 
 
-
-
-Dentar, Inc.
-
-PO BOX 36447
-CINCINNATI, OHIO 45236
-
-http://www.dentar.com;>http://www.dentar.com
-513-312-6673
-mailto:t...@dentar.com;>t...@dentar.com
-THOMAS GLASCOCK
-
-
-Linux/UNIX Support, Windows Support, Dentrix Support, Networking support, Web
-server support, Samba support, Hardware support, Operating systems support
-
-Specialty samba capabilities: Plain old samba.
-
-Special Notes: Be prepared to provide remote login credentials to both
-Windows and Linux/UNIX for testing.
-Our support offerings are limited to Cincinnati, OH., Dayton, OH., and
-Northern KY.
-
-
-
 
 
 Edoceo, Inc.


-- 
Samba Website Repository



[SCM] Samba Shared Repository - branch master updated

2019-10-30 Thread Björn Jacke
The branch, master has been updated
   via  c714c996017 docs-xml/manpages/pam_winbind.conf.5.xml: typo fixes
   via  4b198163d03 docs-xml/manpages/pam_winbind.8.xml: typo fixes
   via  81df8aa7bea docs-xml/Samba-Developers-Guide/unix-smb.xml: typo fixes
   via  a456c2bb02a ctdb/utils/smnotify/smnotify.c: typo fixes
   via  1e73161bdd7 ctdb/utils/scsi_io/scsi_io.c: typo fixes
   via  f3754b64876 ctdb/server/ctdb_daemon.c: typo fixes
   via  5d2a257c2e4 ctdb/server/ctdb_client.c: typo fixes
   via  7722bd80fcd ctdb/server/ctdb_call.c: typo fixes
   via  9fa37484c30 ctdb/include/ctdb_private.h: typo fixes
   via  493705dc274 ctdb/ib/ibwrapper_test.c: typo fixes
   via  540325d3cb4 ctdb/ib/ibw_ctdb.c: typo fixes
   via  b9d7b85afdf ctdb/doc/readonlyrecords.txt: typo fixes
   via  cb867b29c9c ctdb/doc/ctdb.1.xml: typo fixes
   via  93859b3394d ctdb/doc/ctdb-tunables.7.xml: typo fixes
   via  37398acca58 ctdb/doc/ctdb-statistics.7.xml: typo fixes
   via  1b51b444874 ctdb/common/srvid.h: typo fixes
   via  c71a1df18aa ctdb/client/client.h: typo fixes
   via  522697331fc buildtools/wafsamba/wscript: typo fixes
   via  e6cd8884256 buildtools/wafsamba/samba_install.py: typo fixes
   via  e781db805e5 source4/scripting/bin/samba_upgradeprovision: typo fixes
   via  9092120b0db source4/rpc_server/lsa/lsa_lookup.c: typo fixes
   via  b4e0c0d38f5 source4/libcli/libcli.h: typo fixes
   via  7f41f137426 source4/libcli/clireadwrite.c: typo fixes
   via  60fcfa506db source4/dsdb/schema/schema_description.c: typo fixes
   via  1ca79e64d8c source3/winbindd/winbindd_util.c: typo fixes
   via  616f9d04660 source3/utils/net_rpc.c: typo fixes
   via  65d0ea76904 source3/smbd/reply.c: typo fixes
   via  b61e3233273 source3/registry/reg_parse.h: typo fixes
   via  9f4e97a4d5d source3/registry/reg_import.h: typo fixes
   via  c7ceca8451f source3/registry/reg_format.h: typo fixes
   via  07b506c213a source3/modules/vfs_virusfilter.c: typo fixes
   via  12e71a745ae source3/modules/vfs_recycle.c: typo fixes
   via  08ffb9388ec python/samba/upgradehelpers.py: typo fixes
   via  c259190db2d python/samba/netcmd/gpo.py: typo fixes
   via  6e91c52bbb9 python/samba/dbchecker.py: typo fixes
   via  5915a40b25c librpc/ndr/ndr_compression.c: typo fixes
   via  b0deb6799c8 libgpo/gpo_filesync.c: typo fixes
   via  96c7653ee77 lib/tdb/docs/tracing.txt: typo fixes
   via  ba1887d3742 lib/replace/xattr.c: typo fixes
   via  c93f06b12d0 examples/VFS/skel_transparent.c: typo fixes
   via  c2794780ad0 dynconfig/wscript: typo fixes
  from  2b060f93502 s3:smbclient added ABI signature file

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit c714c996017b4167e9a7424e1aecd4437deeed22
Author: Björn Jacke 
Date:   Sat Oct 26 02:41:09 2019 +0200

docs-xml/manpages/pam_winbind.conf.5.xml: typo fixes

Signed-off-by: Bjoern Jacke 
Reviewed-by: Martin Schwenke 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Thu Oct 31 02:18:12 UTC 2019 on sn-devel-184

commit 4b198163d03e97790a3c242f25bbd9949ab0aba1
Author: Björn Jacke 
Date:   Sat Oct 26 02:41:09 2019 +0200

docs-xml/manpages/pam_winbind.8.xml: typo fixes

Signed-off-by: Bjoern Jacke 
Reviewed-by: Martin Schwenke 

commit 81df8aa7bea88f90d7ad18b00788fec8d2744a91
Author: Björn Jacke 
Date:   Sat Oct 26 02:41:09 2019 +0200

docs-xml/Samba-Developers-Guide/unix-smb.xml: typo fixes

Signed-off-by: Bjoern Jacke 
Reviewed-by: Martin Schwenke 

commit a456c2bb02af56ab3d966d673421aab976e632ad
Author: Björn Jacke 
Date:   Sat Oct 26 02:41:09 2019 +0200

ctdb/utils/smnotify/smnotify.c: typo fixes

Signed-off-by: Bjoern Jacke 
Reviewed-by: Martin Schwenke 

commit 1e73161bdd791fe97053dc2faa85b28e7ef55327
Author: Björn Jacke 
Date:   Sat Oct 26 02:41:09 2019 +0200

ctdb/utils/scsi_io/scsi_io.c: typo fixes

Signed-off-by: Bjoern Jacke 
Reviewed-by: Martin Schwenke 

commit f3754b64876e7d0c073d86bb6d2e29425d9e8d31
Author: Björn Jacke 
Date:   Sat Oct 26 02:41:09 2019 +0200

ctdb/server/ctdb_daemon.c: typo fixes

Signed-off-by: Bjoern Jacke 
Reviewed-by: Martin Schwenke 

commit 5d2a257c2e4a929bb70e4e2a2f31ed243c2efa51
Author: Björn Jacke 
Date:   Sat Oct 26 02:41:08 2019 +0200

ctdb/server/ctdb_client.c: typo fixes

Signed-off-by: Bjoern Jacke 
Reviewed-by: Martin Schwenke 

commit 7722bd80fcde69d13b25a1b120fd3f9ecf6dd7dd
Author: Björn Jacke 
Date:   Sat Oct 26 02:41:08 2019 +0200

ctdb/server/ctdb_call.c: typo fixes

Signed-off-by: Bjoern Jacke 
Reviewed-by: Martin Schwenke 

commit 9fa37484c30b83bc36b1607a82c76a77fe639b71
Author: Björn Jacke 
Date:   Sat Oct 26 02:41:08 2019 +0200

ctdb/include/ctdb_private.h: typo

[SCM] Samba Shared Repository - branch master updated

2019-09-24 Thread Björn Jacke
The branch, master has been updated
   via  4f5c4df316d wscript_build: string concatenation efficiency cleanup
   via  c9088c6aa84 pfm_verif: string concatenation efficiency cleanup
   via  c7fa030aecd scripting: avoid inefficient string redefinition
   via  5ad629dcb95 wscript: avoid inefficient string concatenations
   via  b3b6b700c47 s3/wscript: avoid inefficient string concatenations
   via  32d1c3f873f posixacl.py: avoid inefficient string concatenations
   via  dd9e0f0ae1c auth_log_winbind.py: avoid inefficient string 
concatenations
   via  cf51f73e02c schema.py: avoid inefficient string concatenations
   via  d2d8ebcca1c user.py: avoid inefficient string concatenations
   via  ce56d336f23 gpo.py: avoid inefficient string concatenations
   via  1825a7f4e2a kcc_utils.py: avoid inefficient string concatenations
   via  4c34a2d7256 traffic.py: avoid inefficient string concatenations
  from  b8f4f141a2d ctdb-tests: Switch TEST_VAR_DIR to a local script 
variable

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 4f5c4df316dc029f7b5ed6e8e48636dc61ecfe22
Author: Björn Jacke 
Date:   Fri Aug 23 02:19:20 2019 +0200

wscript_build: string concatenation efficiency cleanup

Signed-off-by: Bjoern Jacke 
Reviewed-by: Matthias Dieter Wallnöfer 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Tue Sep 24 13:40:21 UTC 2019 on sn-devel-184

commit c9088c6aa847685613ec34d61b61e31fe0395035
Author: Björn Jacke 
Date:   Fri Aug 23 02:21:17 2019 +0200

pfm_verif: string concatenation efficiency cleanup

Signed-off-by: Bjoern Jacke 
Reviewed-by: Matthias Dieter Wallnöfer 

commit c7fa030aecd1de5ed32e2509ecd83828aa42c1a3
Author: Björn Jacke 
Date:   Sun Aug 25 23:10:19 2019 +0200

scripting: avoid inefficient string redefinition

Signed-off-by: Bjoern Jacke 
Reviewed-by: Matthias Dieter Wallnöfer 

commit 5ad629dcb957e45637f3a71309fa51abd87b267d
Author: Björn Jacke 
Date:   Sun Aug 25 23:09:19 2019 +0200

wscript: avoid inefficient string concatenations

Signed-off-by: Bjoern Jacke 
Reviewed-by: Matthias Dieter Wallnöfer 

commit b3b6b700c47ba771baf632b3a165106c21c9ae04
Author: Björn Jacke 
Date:   Sun Aug 25 23:08:18 2019 +0200

s3/wscript: avoid inefficient string concatenations

Signed-off-by: Bjoern Jacke 
Reviewed-by: Matthias Dieter Wallnöfer 

commit 32d1c3f873fc8bd89a7dc985cb8258e990dc12cd
Author: Björn Jacke 
Date:   Sun Aug 25 23:07:48 2019 +0200

posixacl.py: avoid inefficient string concatenations

Signed-off-by: Bjoern Jacke 
Reviewed-by: Matthias Dieter Wallnöfer 

commit dd9e0f0ae1cca23920883a0e04fe5862663e400e
Author: Björn Jacke 
Date:   Sun Aug 25 23:07:13 2019 +0200

auth_log_winbind.py: avoid inefficient string concatenations

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

commit cf51f73e02cab85f508bcbef362ff75a7ae18d7f
Author: Björn Jacke 
Date:   Sun Aug 25 23:06:19 2019 +0200

schema.py: avoid inefficient string concatenations

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

commit d2d8ebcca1cc4539a7a6b48fa364e03adda1db6c
Author: Björn Jacke 
Date:   Sun Aug 25 23:06:00 2019 +0200

user.py: avoid inefficient string concatenations

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

commit ce56d336f234febfd4cb3da11dd584842c24ce1d
Author: Björn Jacke 
Date:   Sun Aug 25 23:05:31 2019 +0200

gpo.py: avoid inefficient string concatenations

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

commit 1825a7f4e2a39d03f01da37b68ba4f65dbafd04a
Author: Björn Jacke 
Date:   Sun Aug 25 23:05:10 2019 +0200

kcc_utils.py: avoid inefficient string concatenations

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

commit 4c34a2d72569f31d59b904c3ca1c140f6084b3dd
Author: Björn Jacke 
Date:   Sun Aug 25 23:04:25 2019 +0200

traffic.py: avoid inefficient string concatenations

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

---

Summary of changes:
 docs-xml/wscript_build   |  20 ++-
 python/samba/emulate/traffic.py  |   4 +-
 python/samba/kcc/kcc_utils.py| 195 +--
 python/samba/netcmd/gpo.py   |   9 +-
 python/samba/netcmd/user.py  |  58 
 python/samba/schema.py   |   7 +-
 python/samba/tests/auth_log_winbind.py   |   3 +-
 python/samba/tests/posixacl.py   |   4 +-
 source3/wscript  |   4 +-
 source4/scripting/bin/samba_upgradeprovision |   8 +-
 source4/scripting/devel/config_base  |   9 +-
 source4/scripting/devel/pfm_verify.py|   4 +-
 wscript

[SCM] Samba Shared Repository - branch master updated

2019-09-23 Thread Björn Jacke
The branch, master has been updated
   via  465e518d6cc classicupgrade: fix a a bytes-like object is required, 
not 'str' error
   via  ec4c5975528 fault.c: improve fault_report message text pointing to 
our wiki
  from  89288c7e839 samba_version.py: avoid inefficient string 
concatenations

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 465e518d6cc200eefa38643e720ce64e53abac2e
Author: Björn Jacke 
Date:   Sat Sep 21 13:24:59 2019 +0200

classicupgrade: fix a a bytes-like object is required, not 'str' error

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14136

Signed-off-by: Bjoern Jacke 
Reviewed-by: Björn Baumbach 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Mon Sep 23 12:58:20 UTC 2019 on sn-devel-184

commit ec4c5975528f3d3ab9c8813e176c6d1a2f1ca506
Author: Björn Jacke 
Date:   Mon Sep 23 08:57:33 2019 +0200

fault.c: improve fault_report message text pointing to our wiki

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14139

Signed-off-by: Bjoern Jacke 
Reviewed-by: Alexander Bokovoy 

---

Summary of changes:
 lib/util/fault.c| 6 +-
 python/samba/upgrade.py | 2 +-
 2 files changed, 6 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/lib/util/fault.c b/lib/util/fault.c
index 5be9162679e..c42bc51789a 100644
--- a/lib/util/fault.c
+++ b/lib/util/fault.c
@@ -78,7 +78,11 @@ static void fault_report(int sig)
 
DEBUGSEP(0);
DEBUG(0,("INTERNAL ERROR: Signal %d in pid %d 
(%s)",sig,(int)getpid(),SAMBA_VERSION_STRING));
-   DEBUG(0,("\nPlease read the Trouble-Shooting section of the Samba 
HOWTO\n"));
+   DEBUG(0,("\nIf you are running a recent Samba version, and "
+"if you think this problem is not yet fixed in the "
+"latest versions, please consider reporting this "
+"bug, see "
+"https://wiki.samba.org/index.php/Bug_Reporting\n;));
DEBUGSEP(0);
 
smb_panic("internal error");
diff --git a/python/samba/upgrade.py b/python/samba/upgrade.py
index 12555b7994e..8511bed2868 100644
--- a/python/samba/upgrade.py
+++ b/python/samba/upgrade.py
@@ -474,7 +474,7 @@ def upgrade_from_samba3(samba3, logger, targetdir, 
session_info=None,
 ldappass = secrets_db.get_ldap_bind_pw(ldapuser)
 if ldappass is None:
 raise ProvisioningError("ldapsam passdb backend detected but no 
LDAP Bind PW found in secrets.tdb for user %s.  Please point this tool at the 
secrets.tdb that was used by the previous installation.")
-ldappass = ldappass.strip('\x00')
+ldappass = ldappass.decode('utf-8').strip('\x00')
 ldap = True
 else:
 ldapuser = None


-- 
Samba Shared Repository



[SCM] Samba Shared Repository - branch master updated

2019-09-19 Thread Björn Jacke
The branch, master has been updated
   via  094862b8a67 s3/vfs_shadow_copy2.c: Fix typo in comment.
   via  7b6e56b0f99 docs: Fix typo in vfs_ceph_snapshots man page.
  from  d566a4d3e10 replace: Remove crypt() reimplementation

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 094862b8a67c8f1a3d37c2838bb0d684d5858da8
Author: Karolin Seeger 
Date:   Thu Sep 19 09:19:40 2019 +0200

s3/vfs_shadow_copy2.c: Fix typo in comment.

Signed-off-by: Karolin Seeger 
Reviewed-by: Björn Jacke 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Thu Sep 19 14:09:44 UTC 2019 on sn-devel-184

commit 7b6e56b0f990c01d5b7a948c42e7e66c2ac596c7
Author: Karolin Seeger 
Date:   Thu Sep 19 09:18:44 2019 +0200

docs: Fix typo in vfs_ceph_snapshots man page.

Signed-off-by: Karolin Seeger 
Reviewed-by: Björn Jacke 

---

Summary of changes:
 docs-xml/manpages/vfs_ceph_snapshots.8.xml | 2 +-
 source3/modules/vfs_shadow_copy2.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/docs-xml/manpages/vfs_ceph_snapshots.8.xml 
b/docs-xml/manpages/vfs_ceph_snapshots.8.xml
index 7fa2806fd95..872b5237b84 100644
--- a/docs-xml/manpages/vfs_ceph_snapshots.8.xml
+++ b/docs-xml/manpages/vfs_ceph_snapshots.8.xml
@@ -35,7 +35,7 @@
The vfs_ceph_snapshots VFS module exposes
CephFS snapshots for use by Samba. When enabled, SMB clients
such as Windows Explorer's Previous Versions dialog, can
-   enumerate snaphots and access them via "timewarp" tokens.
+   enumerate snapshots and access them via "timewarp" tokens.

 

diff --git a/source3/modules/vfs_shadow_copy2.c 
b/source3/modules/vfs_shadow_copy2.c
index 36e3ead1b1d..5417c9f3b82 100644
--- a/source3/modules/vfs_shadow_copy2.c
+++ b/source3/modules/vfs_shadow_copy2.c
@@ -1005,7 +1005,7 @@ static char *shadow_copy2_do_convert(TALLOC_CTX *mem_ctx,
if (errno == ENOTDIR) {
/*
 * This is a valid condition: We appended the
-* .snaphots/@GMT.. to a file name. Just try
+* .snapshots/@GMT.. to a file name. Just try
 * with the upper levels.
 */
continue;


-- 
Samba Shared Repository



[SCM] Samba Shared Repository - branch master updated

2019-08-29 Thread Björn Jacke
The branch, master has been updated
   via  3aea2c0f1f4 replace/setxattr: correctly use our flags on Darwin
   via  56e0ffa1131 xattr/setxattr: fix flag support on AIX
   via  b8f4be98f5d replace/setxattr: set reasonable and unified errno 
value in case the EA value was too big
  from  0be320393b8 s3/libsmb: clang: Fix 'Value stored during 
initialization is never read'

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 3aea2c0f1f498fdb515cbd1d04b1ba3ce7f4cc3b
Author: Björn Jacke 
Date:   Sat Mar 2 05:47:20 2019 +0100

replace/setxattr: correctly use our flags on Darwin

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Thu Aug 29 17:10:32 UTC 2019 on sn-devel-184

commit 56e0ffa11319eebbe0d8b07502aa3ec8971435d0
Author: Björn Jacke 
Date:   Sat Mar 2 05:39:54 2019 +0100

xattr/setxattr: fix flag support on AIX

AIX requires the flags to be 0, we need to do those checks manually.

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

commit b8f4be98f5d22eb034a953ebefab88752bf4a099
Author: Björn Jacke 
Date:   Sat Mar 2 05:01:28 2019 +0100

replace/setxattr: set reasonable and unified errno value in case the EA 
value was too big

FreeBSD and AIX already set errno to ENAMETOOLONG, this is what we should 
map
other platforms also to to finally map to the correct NT error code also.

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

---

Summary of changes:
 lib/replace/xattr.c | 88 ++---
 1 file changed, 71 insertions(+), 17 deletions(-)


Changeset truncated at 500 lines:

diff --git a/lib/replace/xattr.c b/lib/replace/xattr.c
index 2420ee1f808..d07dd2cc1e3 100644
--- a/lib/replace/xattr.c
+++ b/lib/replace/xattr.c
@@ -515,19 +515,44 @@ int rep_fremovexattr (int filedes, const char *name)
 
 int rep_setxattr (const char *path, const char *name, const void *value, 
size_t size, int flags)
 {
+   int retval = -1;
 #if defined(HAVE_XATTR_XATTR)
 #ifndef XATTR_ADDITIONAL_OPTIONS
-   return setxattr(path, name, value, size, flags);
+   retval = setxattr(path, name, value, size, flags);
+   if (retval < 0) {
+   if (errno == ENOSPC || errno == E2BIG) {
+   errno = ENAMETOOLONG;
+   }
+   }
+   return retval;
 #else
 /* So that we do not recursivly call this function */
 #undef setxattr
-   int options = 0;
-   return setxattr(path, name, value, size, 0, options);
+   retval = setxattr(path, name, value, size, 0, flags);
+   if (retval < 0) {
+   if (errno == E2BIG) {
+   errno = ENAMETOOLONG;
+   }
+   }
+   return retval;
 #endif
 #elif defined(HAVE_XATTR_EA)
-   return setea(path, name, value, size, flags);
+   if (flags) {
+   retval = getea(path, name, NULL, 0);
+   if (retval < 0) {
+   if (flags & XATTR_REPLACE && errno == ENOATTR) {
+   return -1;
+   }
+   } else {
+   if (flags & XATTR_CREATE) {
+   errno = EEXIST;
+   return -1;
+   }
+   }
+   }
+   retval = setea(path, name, value, size, 0);
+   return retval;
 #elif defined(HAVE_XATTR_EXTATTR)
-   int retval = 0;
int attrnamespace;
const char *attrname;
 
@@ -571,19 +596,24 @@ int rep_setxattr (const char *path, const char *name, 
const void *value, size_t
if (flags & XATTR_CREATE) myflags |= ATTR_CREATE;
if (flags & XATTR_REPLACE) myflags |= ATTR_REPLACE;
 
-   return attr_set(path, attrname, (const char *)value, size, myflags);
+   retval = attr_set(path, attrname, (const char *)value, size, myflags);
+   if (retval < 0) {
+   if (errno == E2BIG) {
+   errno = ENAMETOOLONG;
+   }
+   }
+   return retval;
 #elif defined(HAVE_ATTROPEN)
-   int ret = -1;
int myflags = O_RDWR;
int attrfd;
if (flags & XATTR_CREATE) myflags |= O_EXCL;
if (!(flags & XATTR_REPLACE)) myflags |= O_CREAT;
attrfd = solaris_attropen(path, name, myflags, (mode_t) 
SOLARIS_ATTRMODE);
if (attrfd >= 0) {
-   ret = solaris_write_xattr(attrfd, value, size);
+   retval = solaris_write_xattr(attrfd, value, size);
close(attrfd);
}
-   return ret;
+   return retval;
 #else
errno = ENOSYS;
return -1;
@@ -592,19 +622,44 @@ int rep_setxattr (const char *path, const char *name, 
cons

[SCM] Samba Shared Repository - branch master updated

2019-08-22 Thread Björn Jacke
The branch, master has been updated
   via  39e06c49aeb docs-xml: fix problamatic quotes from panic action 
example
   via  43642316259 python: use os.urandom, which is available in python by 
definition
  from  a7383889282 lib: free popt context in texpect

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 39e06c49aebddaa208a149233cf35159588ebfdc
Author: Björn Jacke 
Date:   Thu Aug 22 13:51:59 2019 +0200

docs-xml: fix problamatic quotes from panic action example

those quotes work for smbd but do not work for the samba binary. Without 
quotes
it works with both.

Signed-off-by: Bjoern Jacke 
Reviewed-by: Stefan Metzmacher 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Thu Aug 22 13:46:14 UTC 2019 on sn-devel-184

commit 436423162592a684d52634e6db05f20bce6a5362
Author: Björn Jacke 
Date:   Thu Jul 4 20:38:50 2019 +0200

python: use os.urandom, which is available in python by definition

os.urandom also uses CSPRNG methods like getrandom() when the underlying OS
provides those.

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andrew Bartlett 

---

Summary of changes:
 docs-xml/smbdotconf/misc/panicaction.xml |  2 +-
 python/samba/netcmd/user.py  | 41 ++--
 2 files changed, 3 insertions(+), 40 deletions(-)


Changeset truncated at 500 lines:

diff --git a/docs-xml/smbdotconf/misc/panicaction.xml 
b/docs-xml/smbdotconf/misc/panicaction.xml
index d6e1517525d..7b7df256388 100644
--- a/docs-xml/smbdotconf/misc/panicaction.xml
+++ b/docs-xml/smbdotconf/misc/panicaction.xml
@@ -12,5 +12,5 @@
 
 
 
-/bin/sleep 9
+/bin/sleep 9
 
diff --git a/python/samba/netcmd/user.py b/python/samba/netcmd/user.py
index 121050a26e6..e9f35f158e3 100644
--- a/python/samba/netcmd/user.py
+++ b/python/samba/netcmd/user.py
@@ -124,33 +124,6 @@ virtual_attributes = {
 },
 }
 
-get_random_bytes_fn = None
-if get_random_bytes_fn is None:
-try:
-import Crypto.Random
-get_random_bytes_fn = Crypto.Random.get_random_bytes
-except ImportError as e:
-pass
-if get_random_bytes_fn is None:
-try:
-import M2Crypto.Rand
-get_random_bytes_fn = M2Crypto.Rand.rand_bytes
-except ImportError as e:
-pass
-
-
-def check_random():
-if get_random_bytes_fn is not None:
-return None
-return "Crypto.Random or M2Crypto.Rand required"
-
-
-def get_random_bytes(num):
-random_reason = check_random()
-if random_reason is not None:
-raise ImportError(random_reason)
-return get_random_bytes_fn(num)
-
 
 def get_crypt_value(alg, utf8pw, rounds=0):
 algs = {
@@ -158,7 +131,7 @@ def get_crypt_value(alg, utf8pw, rounds=0):
 "6": {"length": 86},
 }
 assert alg in algs
-salt = get_random_bytes(16)
+salt = os.urandom(16)
 # The salt needs to be in [A-Za-z0-9./]
 # base64 is close enough and as we had 16
 # random bytes but only need 16 characters
@@ -203,9 +176,6 @@ def get_rounds(options):
 
 
 try:
-random_reason = check_random()
-if random_reason is not None:
-raise ImportError(random_reason)
 import hashlib
 h = hashlib.sha1()
 h = None
@@ -213,8 +183,6 @@ try:
 }
 except ImportError as e:
 reason = "hashlib.sha1()"
-if random_reason:
-reason += " and " + random_reason
 reason += " required"
 disabled_virtual_attributes["virtualSSHA"] = {
 "reason": reason,
@@ -222,9 +190,6 @@ except ImportError as e:
 
 for (alg, attr) in [("5", "virtualCryptSHA256"), ("6", "virtualCryptSHA512")]:
 try:
-random_reason = check_random()
-if random_reason is not None:
-raise ImportError(random_reason)
 import crypt
 v = get_crypt_value(alg, "")
 v = None
@@ -232,8 +197,6 @@ for (alg, attr) in [("5", "virtualCryptSHA256"), ("6", 
"virtualCryptSHA512")]:
 }
 except ImportError as e:
 reason = "crypt"
-if random_reason:
-reason += " and " + random_reason
 reason += " required"
 disabled_virtual_attributes[attr] = {
 "reason": reason,
@@ -1307,7 +1270,7 @@ class GetPasswordCommand(Command):
 u8 = get_utf8(a, b, username or account_name)
 if u8 is None:
 continue
-salt = get_random_bytes(4)
+salt = os.urandom(4)
 h = hashlib.sha1()
 h.update(u8)
 h.update(salt)


-- 
Samba Shared Repository



[SCM] Samba Shared Repository - branch master updated

2019-07-07 Thread Björn Jacke
The branch, master has been updated
   via  0751047f559 docs-xml: deprecate allocation roundup size parameter
   via  d6b8cbc8f70 param: change default of "allocation roundup size" to 0
   via  37b3c6375b4 torture: fix durable open/alloc-size test
  from  cd0df26bdc7 WHATSNEW: Add CTDB updates for 4.11

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 0751047f559fb8b30d671bcbc4bc8481192db114
Author: Björn Jacke 
Date:   Wed Jun 19 13:20:34 2019 +0200

docs-xml: deprecate allocation roundup size parameter

Signed-off-by: Bjoern Jacke 
Reviewed-by: Christof Schmitt 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Sun Jul  7 23:21:55 UTC 2019 on sn-devel-184

commit d6b8cbc8f7078b1ee5574204f2cac18d20a206e6
Author: Björn Jacke 
Date:   Wed Jun 19 13:04:55 2019 +0200

param: change default of "allocation roundup size" to 0

Signed-off-by: Bjoern Jacke 
Reviewed-by: Christof Schmitt 

commit 37b3c6375b43cdbb5d06d194a88835c5637d66a0
Author: Björn Jacke 
Date:   Thu Jun 20 16:10:52 2019 +0200

torture: fix durable open/alloc-size test

Signed-off-by: Bjoern Jacke 
Reviewed-by: Christof Schmitt 

---

Summary of changes:
 docs-xml/smbdotconf/tuning/allocationroundupsize.xml | 18 +-
 lib/param/loadparm.c |  2 --
 source3/include/local.h  |  3 ---
 source3/param/loadparm.c |  1 -
 source4/torture/smb2/durable_open.c  |  2 +-
 5 files changed, 14 insertions(+), 12 deletions(-)


Changeset truncated at 500 lines:

diff --git a/docs-xml/smbdotconf/tuning/allocationroundupsize.xml 
b/docs-xml/smbdotconf/tuning/allocationroundupsize.xml
index eaea467bc39..08aa621fcc5 100644
--- a/docs-xml/smbdotconf/tuning/allocationroundupsize.xml
+++ b/docs-xml/smbdotconf/tuning/allocationroundupsize.xml
@@ -1,20 +1,28 @@
 http://www.samba.org/samba/DTD/samba-doc;>
 
 This parameter allows an administrator to tune the 
-allocation size reported to Windows clients.  The default 
-size of 1Mb generally results in improved Windows client
-performance.   However, rounding the allocation size may cause
+allocation size reported to Windows clients. This is only
+useful for old SMB1 clients because modern SMB dialects
+eliminated that bottleneck and have better performance by
+default.  Using this parameter may cause
 difficulties for some applications, e.g. MS Visual Studio.
 If the MS Visual Studio compiler starts to crash with an
 internal error, set this parameter to zero for this share.
+Settings this parameter to a large value can also cause
+small files to allocate more space on the disk than
+needed.
+
+This parameter is deprecated and will be removed in
+one of the next Samba releases.
 
 
 The integer parameter specifies the roundup size in bytes.
 
 
-1048576
-0(to disable roundups)
+0
+1048576(to set it to the former default of 1 
MiB)
 
diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c
index 413e0237800..239d671803f 100644
--- a/lib/param/loadparm.c
+++ b/lib/param/loadparm.c
@@ -2889,8 +2889,6 @@ struct loadparm_context *loadparm_init(TALLOC_CTX 
*mem_ctx)
 
lpcfg_do_global_parameter(lp_ctx, "show add printer wizard", "yes");
 
-   lpcfg_do_global_parameter(lp_ctx, "allocation roundup size", "1048576");
-
lpcfg_do_global_parameter(lp_ctx, "ldap page size", "1000");
 
lpcfg_do_global_parameter(lp_ctx, "kernel share modes", "yes");
diff --git a/source3/include/local.h b/source3/include/local.h
index 62700aace3c..9ae1bcf5347 100644
--- a/source3/include/local.h
+++ b/source3/include/local.h
@@ -151,9 +151,6 @@
 /* the maximum age in seconds of a password. Should be a lp_ parameter */
 #define MAX_PASSWORD_AGE (21*24*60*60)
 
-/* Default allocation roundup. */
-#define SMB_ROUNDUP_ALLOCATION_SIZE 0x10
-
 /* shall we deny oplocks to clients that get timeouts? */
 #define FASCIST_OPLOCK_BACKOFF 1
 
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c
index 5104a3408f1..c2e1f341c57 100644
--- a/source3/param/loadparm.c
+++ b/source3/param/loadparm.c
@@ -236,7 +236,6 @@ static const struct loadparm_service _sDefault =
.acl_map_full_control = true,
.acl_group_control = false,
.acl_allow_execute_always = false,
-   .allocation_roundup_size = SMB_ROUNDUP_ALLOCATION_SIZE,
.aio_read_size = 1,
.aio_write_size = 1,
.map_readonly = MAP_READONLY_NO,
diff --git a/source4/torture/smb2/durable_open.c 
b/source4/torture/smb2/durable_open.c
index 229c39dce67..3d78a35d92c 100644
--- a/source4/

[SCM] Samba Website Repository - branch master updated

2019-06-27 Thread Björn Jacke
The branch, master has been updated
   via  16a7acb add new team members: Samuel, Louis, Tim
  from  cc197b9 move alumnified team members to alumi section

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 16a7acb59f63e37d18c180b51504034369699744
Author: Björn Jacke 
Date:   Thu Jun 27 16:01:43 2019 +0200

add new team members: Samuel, Louis, Tim

---

Summary of changes:
 team/index.html | 3 +++
 1 file changed, 3 insertions(+)


Changeset truncated at 500 lines:

diff --git a/team/index.html b/team/index.html
index 23610ed..ccdbb6c 100755
--- a/team/index.html
+++ b/team/index.html
@@ -53,9 +53,12 @@ mailing list and start contributing to the development 
of Samba.
 http://halo.gen.nz/;>Douglas Bagnall(http://catalyst.net.nz/what-we-offer/enterprise-solutions/samba;>Catalyst)
 https://www.samba.org/~abartlet/;>Andrew Bartlett(http://catalyst.net.nz/what-we-offer/enterprise-solutions/samba;>Catalyst)
 mailto:bbaumb...@samba.org;>Bjrn Baumbach(https://www.sernet.de/en/;>SerNet)
+Tim Beale
+Louis van Belle
 mailto:k...@samba.org;>Kai Blin
 mailto:s...@samba.org;>Ralph Bhme(http://www.sernet.de/en/;>SerNet)
 mailto:a...@samba.org;>Alexander Bokovoy(https://www.redhat.com/;>Red Hat)
+Samuel Cabrero
 https://www.samba.org/~gd;>Gnther Deschner(https://www.redhat.com/;>Red Hat)
 mailto:dd...@samba.org;>David Disseldorp(https://www.suse.com/;>SUSE)
 mailto:sfre...@samba.org;>Steve French


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2019-06-27 Thread Björn Jacke
The branch, master has been updated
   via  cc197b9 move alumnified team members to alumi section
  from  d40cbc3 Add new team photo.

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit cc197b9a84cf1b7d9ca07b383bf6c205090ee8c1
Author: Björn Jacke 
Date:   Thu Jun 27 15:55:15 2019 +0200

move alumnified team members to alumi section

---

Summary of changes:
 team/index.html | 29 +++--
 1 file changed, 15 insertions(+), 14 deletions(-)


Changeset truncated at 500 lines:

diff --git a/team/index.html b/team/index.html
index 41c36a3..23610ed 100755
--- a/team/index.html
+++ b/team/index.html
@@ -50,25 +50,19 @@ mailing list and start contributing to the development 
of Samba.
 https://www.samba.org/~obnox/;>Michael Adam(https://www.redhat.com/;>Red Hat)
 https://www.samba.org/~jra;>Jeremy Allison
 mailto:a...@samba.org;>Christian Ambach
-mailto:anato...@samba.org;>Anatoliy Atanasov
 http://halo.gen.nz/;>Douglas Bagnall(http://catalyst.net.nz/what-we-offer/enterprise-solutions/samba;>Catalyst)
 https://www.samba.org/~abartlet/;>Andrew Bartlett(http://catalyst.net.nz/what-we-offer/enterprise-solutions/samba;>Catalyst)
 mailto:bbaumb...@samba.org;>Bjrn Baumbach(https://www.sernet.de/en/;>SerNet)
 mailto:k...@samba.org;>Kai Blin
 mailto:s...@samba.org;>Ralph Bhme(http://www.sernet.de/en/;>SerNet)
 mailto:a...@samba.org;>Alexander Bokovoy(https://www.redhat.com/;>Red Hat)
-Ira Cooper
 https://www.samba.org/~gd;>Gnther Deschner(https://www.redhat.com/;>Red Hat)
 mailto:dd...@samba.org;>David Disseldorp(https://www.suse.com/;>SUSE)
 mailto:sfre...@samba.org;>Steve French
 http://ubiqx.org/;>Chris Hertel
-mailto:hhet...@samba.org;>Holger Hetterich(https://www.suse.com/;>SUSE)
-http://people.su.se/~lha/;>Love Hrnquist 
strand
 mailto:ami...@samba.org;>Amitay Isaacs
 mailto:nivan...@samba.org;>Nadezhda Ivanova
 https://www.j3e.de/;>Bjrn Jacke(https://www.sernet.de/en/;>SerNet)
-mailto:mkap...@samba.org;>Marc Kaplan
-mailto:ku...@samba.org;>Gnter Kukkukk
 https://www.samba.org/~jlayton/jlayton_resume.html;>Jeff 
Layton
 mailto:v...@samba.org;>Volker Lendecke(http://www.sernet.de/en/;>SerNet)
 mailto:h...@samba.org;>Herb Lewis
@@ -78,16 +72,12 @@ mailing list and start contributing to the development 
of Samba.
 
 
 mailto:g...@samba.org;>Gary Lockyer(http://catalyst.net.nz/what-we-offer/enterprise-solutions/samba;>Catalyst)
-mailto:kame...@samba.org;>Kamen Mazdrashki
 mailto:j...@samba.org;>Jim McDonough(https://www.suse.com/;>SUSE)
 mailto:me...@samba.org;>Stefan Metzmacher(https://www.sernet.de/en/;>SerNet)
 mailto:mmuehlf...@samba.org;>Marc Muehlfeld
 mailto:m...@samba.org;>Matthieu Patou
-mailto:jpe...@samba.org;>James Peach
 Rowland Penny
-mailto:t...@samba.org;>Tim Potter
 Noel Power
-https://www.samba.org/~tprouty/;>Tim Prouty
 mailto:jar...@samba.org;>José A. Rivera(https://www.redhat.com/;>Red Hat)
 http://ozlabs.org/~rusty/;>Rusty Russell
 Garming Sam(http://catalyst.net.nz/what-we-offer/enterprise-solutions/samba;>Catalyst)
@@ -97,14 +87,11 @@ mailing list and start contributing to the development 
of Samba.
 mailto:ksee...@samba.org;>Karolin Seeger(https://www.sernet.de/en/;>SerNet)
 http://www.richardsharpe.com;>Richard Sharpe
 mailto:i...@samba.org;>Simo Sorce(https://www.redhat.com/;>Red Hat)
-mailto:mi...@samba.org;>Rafal Szczesniak
-mailto:j...@samba.org;>John Terpstra
 https://www.samba.org/~tridge/;>Andrew Tridgell
 mailto:u...@samba.org;>Uri Simchoni
 https://www.samba.org/~jelmer/;>Jelmer Vernooij
 mailto:m...@samba.org;>Matthias Dieter Wallnfer
 mailto:m...@samba.org;>Michael Warfield
-mailto:boy...@samba.org;>Bo Yang
 
 
 
@@ -151,17 +138,23 @@ during their time as team members.
 
 
 David Bannon
+mailto:anato...@samba.org;>Anatoliy Atanasov
 mailto:icti...@samba.org;>Paul Blackman
 John Blair
-mailto:matth...@cse.unsw.edu.au;>Matt Chapman
 http://www.plainjoe.org/;>Gerald Carter
+mailto:matth...@cse.unsw.edu.au;>Matt Chapman
+Ira Cooper
 https://www.samba.org/~sdanneman/;>Steven Danneman
 mailto:elr...@samba-tng.org;>Elrond
 mailto:pa...@samba.org;>Paul Green
 Dave Fenwick
+mailto:hhet...@samba.org;>Holger Hetterich(https://www.suse.com/;>SUSE)
 http://www.devurandom.org/;>Deryck Hodge
+http://people.su.se/~lha/;>Love Hrnquist 
strand
 mailto:kal...@veritas.com;>Shirish Kalele
+mailto:mkap...@samba.org;>Marc Kaplan
 mailto:pke...@ets.net;>Peter Kelly
+mailto:ku...@samba.org;>Gnter Kukkukk
 
 
 
@@ -172,16 +165,24 @@ during their time as team members.
 
 mailto:va...@samba.org;>Vance Lankhaar
 mailto:l...@samba-tng.org;>Luke Leighton
+mailto:kame...@samba.org;>Kamen Mazdrashki
 mailto:me...@ifn.ing.tu-bs.de;>Eckart Meyer
 Jean-François Micouleau
 https://www.samba.org/~lmuelle/;>Lars Mller(https://www.suse.com/;>SUSE)
 mailto:ol...@samba.org;>Alexandre Oliva
+mailto:jpe...@samba.org;>James Peach
 

[SCM] Samba Website Repository - branch master updated

2019-03-21 Thread Björn Jacke
The branch, master has been updated
   via  3d0f865 docs: move "implementing cifs" to "older docs"
   via  8614240 docs: add link to man pages again
  from  6873e01 Add Samba 4.10.0.

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 3d0f86520f5de42de3876eecd4f426916d621c0f
Author: Björn Jacke 
Date:   Thu Mar 21 13:26:55 2019 +0100

docs: move "implementing cifs" to "older docs"

Björn

commit 8614240a7d3fac015862803e5963bbab7c3aa60d
Author: Björn Jacke 
Date:   Thu Mar 21 13:26:02 2019 +0100

docs: add link to man pages again

Björn

---

Summary of changes:
 docs/index.html | 13 -
 1 file changed, 4 insertions(+), 9 deletions(-)


Changeset truncated at 500 lines:

diff --git a/docs/index.html b/docs/index.html
index 9194934..39e5cd7 100755
--- a/docs/index.html
+++ b/docs/index.html
@@ -15,20 +15,15 @@ earlier version of Samba then you may find some 
differences.
  Samba.
   https://wiki.samba.org/index.php/Presentations;>Presentations by 
Samba Team 
   members
-
-  http://www.ubiqx.org/cifs/;>Implementing CIFS; an
-  on-line book describing the workings and implementation
-  of the CIFS protocol suite.
+  Samba man pages in html
   Samba Licensing (GNU GPL)
 
 
 Older (but hopefully still valid) misc docs
 
+  http://www.ubiqx.org/cifs/;>Implementing CIFS; an
+  on-line book describing the workings and implementation
+  of the CIFS protocol suite.
   PDF version of the 
   Troubleshooting Techniques
   chapter from the second edition of Sam's Teach Yourself Samba in 24 
Hours 


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2019-03-17 Thread Björn Jacke
The branch, master has been updated
   via  1eb87be docs: remove dead links to outdated and valished doc 
translations
  from  f2b1d83 Add Samba 4.9.5.

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 1eb87be77b7273d23d9929ecf8c0ee0c21b3c8c3
Author: Björn Jacke 
Date:   Sun Mar 17 11:50:07 2019 +0100

docs: remove dead links to outdated and valished doc translations

Björn

---

Summary of changes:
 docs/index.html | 9 +++--
 1 file changed, 3 insertions(+), 6 deletions(-)


Changeset truncated at 500 lines:

diff --git a/docs/index.html b/docs/index.html
index 0bd769f..9194934 100755
--- a/docs/index.html
+++ b/docs/index.html
@@ -52,13 +52,10 @@ earlier version of Samba then you may find some 
differences.
 
 Translations
 
-  http://home.gna.org/sambadoc/;>Samba HOWTO Collection in 
-French
-  http://gertranssmb3.berlios.de/;>Samba HOWTO Collection in 
German
   http://www.samba.gr.jp/project/translation/Samba3-HOWTO/
-">Samba HOWTO Collection in Japanese
-  http://smb-conf.ru/;>Samba 3 smb.conf man page in 
Russian
-  http://samba-doc.ru/samba3example/index.html;>Samba 3 by 
Example in Russian (translation in progress)
+">Samba HOWTO Collection in Japanese (ancient old documentation!)
+  http://smb-conf.ru/;>Samba 3 smb.conf man page in Russian 
(ancient old documentation!)
+  http://samba-doc.ru/samba3example/index.html;>Samba 3 by 
Example in Russian (acncient old documentation)
 
 
 Contributing


-- 
Samba Website Repository



[SCM] Samba Shared Repository - branch master updated

2019-03-01 Thread Björn Jacke
The branch, master has been updated
   via  42e96696a09 wafbuild: create missing private library symlinks on 
platforms without soname support for shared libs
  from  99ef0ba048c libsmb: Make cli_smb2_rmdir asynchronous

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 42e96696a097c3c73230c7be8d107e444de1c8c7
Author: Björn Jacke 
Date:   Thu Feb 28 17:31:31 2019 +0100

wafbuild: create missing private library symlinks on platforms without 
soname support for shared libs

BUG: https://bugzilla.samba.org/show_bug.cgi?id=9557

Signed-off-by: Bjoern Jacke 
Reviewed-by: Stefan Metzmacher 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Fri Mar  1 17:05:19 UTC 2019 on sn-devel-144

---

Summary of changes:
 buildtools/wafsamba/samba_install.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/buildtools/wafsamba/samba_install.py 
b/buildtools/wafsamba/samba_install.py
index 47bc0cbf90c..c07b2ce639a 100644
--- a/buildtools/wafsamba/samba_install.py
+++ b/buildtools/wafsamba/samba_install.py
@@ -121,7 +121,7 @@ def install_library(self):
 install_name = bld.make_libname(target_name, version=self.vnum)
 install_link = bld.make_libname(target_name, version=vnum_base)
 inst_name= bld.make_libname(t.target)
-if not self.private_library:
+if not self.private_library or not t.env.SONAME_ST:
 # only generate the dev link for non-bundled libs
 dev_link = bld.make_libname(target_name)
 elif getattr(self, 'soname', ''):


-- 
Samba Shared Repository



[SCM] Samba Shared Repository - branch master updated

2019-02-22 Thread Björn Jacke
The branch, master has been updated
   via  02c9bee85a9 set caller allocation units in statvfs f_bavail
  from  b33fad77268 notifyd: Fix SIGBUS on sparc

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 02c9bee85a9098dec6926b054e6f11b9c79a513f
Author: Mark Niggemann 
Date:   Thu Jun 8 11:20:46 2017 -0500

set caller allocation units in statvfs f_bavail

Signed-off-by: Mark Niggemann 
Reviewed-by: Andreas Schneider 
Reviewed-by: Bjoern Jacke 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Fri Feb 22 15:04:55 CET 2019 on sn-devel-144

---

Summary of changes:
 source3/libsmb/libsmb_stat.c | 2 ++
 1 file changed, 2 insertions(+)


Changeset truncated at 500 lines:

diff --git a/source3/libsmb/libsmb_stat.c b/source3/libsmb/libsmb_stat.c
index f8b35bdb9ea..2f6e66c08e5 100644
--- a/source3/libsmb/libsmb_stat.c
+++ b/source3/libsmb/libsmb_stat.c
@@ -420,6 +420,8 @@ SMBC_fstatvfs_ctx(SMBCCTX *context,
 (fsblkcnt_t) total_allocation_units;
 st->f_bfree =
 (fsblkcnt_t) actual_allocation_units;
+st->f_bavail =
+(fsblkcnt_t) caller_allocation_units;
 }
 
 flags |= SMBC_VFS_FEATURE_NO_UNIXCIFS;


-- 
Samba Shared Repository



[SCM] Samba Shared Repository - branch master updated

2019-02-22 Thread Björn Jacke
The branch, master has been updated
   via  b33fad77268 notifyd: Fix SIGBUS on sparc
  from  92a90524373 ctdb-tests: Add test for ctdb_io.c

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit b33fad772682e87ecc2b46b1b54625caeccc9eb2
Author: Jiří Šašek 
Date:   Thu Dec 6 14:10:53 2018 +0100

notifyd: Fix SIGBUS on sparc

Problem is the structure "struct notify_instance" can lay in message buffer 
on
address not dividable by 8 but this structure begins by uint_64 (secs in
time-stamp). Structure should be re-packed to standalone buffer before the 
use.

Bug: https://bugzilla.samba.org/show_bug.cgi?id=13704
Signed-off-by: jiri.sa...@oracle.com
Reviewed-by: Volker Lendecke 
Reviewed-by: Stefan Metzmacher 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Fri Feb 22 12:30:11 CET 2019 on sn-devel-144

---

Summary of changes:
 source3/smbd/notifyd/notifyd.c | 11 +--
 1 file changed, 9 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/smbd/notifyd/notifyd.c b/source3/smbd/notifyd/notifyd.c
index 811ada969fb..6ff1de5b5fe 100644
--- a/source3/smbd/notifyd/notifyd.c
+++ b/source3/smbd/notifyd/notifyd.c
@@ -575,6 +575,7 @@ static void notifyd_rec_change(struct messaging_context 
*msg_ctx,
struct notify_rec_change_msg *msg;
size_t pathlen;
bool ok;
+   struct notify_instance instance;
 
DBG_DEBUG("Got %zu bytes from %s\n", data->length,
  server_id_str_buf(src, ));
@@ -585,8 +586,10 @@ static void notifyd_rec_change(struct messaging_context 
*msg_ctx,
return;
}
 
+   memcpy(, >instance, sizeof(instance)); /* avoid SIGBUS */
+
ok = notifyd_apply_rec_change(
-   , msg->path, pathlen, >instance,
+   , msg->path, pathlen, ,
state->entries, state->sys_notify_watch, state->sys_notify_ctx,
state->msg_ctx);
if (!ok) {
@@ -1337,6 +1340,7 @@ static void notifyd_apply_reclog(struct notifyd_peer 
*peer,
struct notify_rec_change_msg *chg;
size_t pathlen;
bool ok;
+   struct notify_instance instance;
 
ok = notifyd_parse_rec_change(r->buf.data, r->buf.length,
  , );
@@ -1346,8 +1350,11 @@ static void notifyd_apply_reclog(struct notifyd_peer 
*peer,
goto fail;
}
 
+   /* avoid SIGBUS */
+   memcpy(, >instance, sizeof(instance));
+
ok = notifyd_apply_rec_change(>src, chg->path, pathlen,
- >instance, peer->db,
+ , peer->db,
  state->sys_notify_watch,
  state->sys_notify_ctx,
  state->msg_ctx);


-- 
Samba Shared Repository



[SCM] Samba Shared Repository - branch master updated

2019-02-17 Thread Björn Jacke
The branch, master has been updated
   via  a87660b3c47 third_party/nss_wrapper/wscript: check for libnsl and 
libsocket
   via  b8bf7ef87e2 waf: add library dependency for sendfile on Solaris
   via  44ccba4088f third_party/nss_wrapper/wscript: fix check for 
gethostbyname
   via  c9bcde012e1 waf: fix setting of RPATH_ST variable
   via  f2c3d2b262d wafsamba: we should also remove stale symlinks here
   via  7058a88cbe3 waf: print the library name in which we search for a 
function
   via  918bf89dc76 waf: use the correct WERROR_CFLAGS in CHECK_CODE
   via  99dd2ae8107 waf: remove redundant WERROR flag
   via  c1715406f5b waf: remove duplicate WERROR cflags
   via  2ba972e90f2 waf: fix compiler warnings in configure checks
   via  decba07b092 waf: fix WERROR_CFLAGS check
   via  6e72fe8450d waf: fix some missing newline compiler warnings
   via  e8d1e04bb64 sysquotas_4B: raise log level of a sometimes too noisy 
message
   via  e2cc29daf73 waf/quotas: fail configure when quotas were requested 
but not found
   via  7859ebc55a4 quotas: remove legacy AIX quota code that is covered by 
sysquotas now
   via  0c9c51fa7a6 tests/sysquotas.c: include jfs/quota.h for 4B test on 
AIX
   via  204a03e0bba add sysquotas_jfs2.c
   via  c143de9af7f sysquotas_4B: enable for jfs/quota.h on AIX
   via  0d815dbb101 sysquotas_4B: make quota block calculation adopt to 
platform quota block size
   via  21e930adecf waf: check for jfs/quota.h
   via  2eca1a66764 sysquotas.h: collect more platform quotablock sizes
   via  56c198c0056 tests/quota: tidy up includes of sysquotas 4B
   via  e4abe870824 sysquotas_nfs: also honor reported inode/file limits
   via  28da0723193 sysquotas_xfs: fix inode limit setting, which is not 
depeding on blocksize
   via  99742c86a1b sysquotas_linux: fix inode limit setting, which is not 
depeding on blocksize
   via  bc2cc68713b ntquotas: do not set inode limits when setting space 
quota
   via  2888bee43cb replace: remove needless vxfs header file check
   via  cd1ac3668cd sambaundoguididx: use the right escaped oder unescaped 
sam ldb files
  from  8eac5a6bd5f .gitignore: add ignore rules for a few dev tools

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit a87660b3c47e5bb362a89ad83f7deb2c8306aa24
Author: Björn Jacke 
Date:   Sat Feb 16 01:23:29 2019 +0100

third_party/nss_wrapper/wscript: check for libnsl and libsocket

this is needed as there are HAVE_LIBNSL and HAVE_LIBSOCKET in the code and
Samba fails to build in a terrible obscure way on Solaris if this is not
working inside nss_wrapper here.

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andreas Schneider 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Sun Feb 17 15:05:20 CET 2019 on sn-devel-144

commit b8bf7ef87e29daa18b079d221ffa3252d1719f2a
Author: Björn Jacke 
Date:   Sun Feb 10 22:38:49 2019 +0100

waf: add library dependency for sendfile on Solaris

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andreas Schneider 

commit 44ccba4088ff1b653dd4735ca8bf13181a31dbfe
Author: Björn Jacke 
Date:   Sun Feb 10 02:02:06 2019 +0100

third_party/nss_wrapper/wscript: fix check for gethostbyname

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andreas Schneider 

commit c9bcde012e18446e3081e190c0a0858b37fda14c
Author: Björn Jacke 
Date:   Sun Feb 10 03:41:50 2019 +0100

waf: fix setting of RPATH_ST variable

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andreas Schneider 

commit f2c3d2b262d435e75debb00a43ed8d038f203abe
Author: Björn Jacke 
Date:   Mon Feb 11 15:30:24 2019 +0100

wafsamba: we should also remove stale symlinks here

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andreas Schneider 

commit 7058a88cbe3c1a2ad272b6debc1c9d09a259d116
Author: Björn Jacke 
Date:   Mon Feb 11 10:03:00 2019 +0100

waf: print the library name in which we search for a function

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andreas Schneider 

commit 918bf89dc760e007a36c90be34b4627eb2141157
Author: Björn Jacke 
Date:   Sun Feb 10 01:29:22 2019 +0100

waf: use the correct WERROR_CFLAGS in CHECK_CODE

all the non gcc version were incorrectly set here till now

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andreas Schneider 

commit 99dd2ae81079dd210612d97242ffc1835a23fdf0
Author: Björn Jacke 
Date:   Sun Feb 10 00:47:59 2019 +0100

waf: remove redundant WERROR flag

CHECK_CFLAGS always uses WERROR flags

Signed-off-by: Bjoern Jacke 
Reviewed-by: Andreas Schneider 

commit c1715406f5b66b73395c9155f782b5aaa9ea51e6
Author: Björn Jacke 
Date:   Sun Feb 10 00:44:14 2019 +0100

waf: remove duplicate WERROR cflags

WERROR flags are already added by the strict=True switch.

Signed-off-by: Bjoern

[SCM] Samba Shared Repository - branch master updated

2019-01-28 Thread Björn Jacke
The branch, master has been updated
   via  232273bfac3 s4:torture: Enforce Printer Class
   via  669b135b49d s4:torture: Uninstall driver and cleanup
   via  38967fd954b s4:torture: Add test_ValidatePrinterDriverInstalled
   via  c627b4e33b4 s4:torture: Add test_InstallPrinterDriverFromPackage
   via  a9f283c84ff s4:torture: Add test_UploadPrinterDriverPackage
   via  a9619abb95f s4:torture: Add test_CopyDriverFiles
   via  01f1bd3ff1c s4:torture: Add test_init_driver_info function
   via  1ac1b3e12fb s4:torture: Add driver parsing wrapper
   via  7783c62bbf7 lib:printer_driver: Retrieve Class value
   via  5442355cdb5 lib:printer_driver: Don't overwrite printprocessor
   via  166380111ba lib:printer_driver: Parse SourceDisksNames section
   via  04d92b00202 lib:printer_driver: Handle PrintProcessor string
   via  b6712ab902a lib:printer_driver: Add printer_driver library to parse 
printer driver inf files
   via  7d42029ff79 utils:libgpo: re-add libgpo as library, it should not 
be part of gpext
   via  7abf1d03394 util: Add file tree walk interface
   via  5e97d3cda81 s4:torture: Use test client user and machine name 
defaults
   via  a9c50a71e6e s4:torture: Add iremotewinspool driver torture template
   via  5c1514e677f librpc:idl: Fix pszDestInfPath winspool parameter type
   via  8f240b12f95 s4:torture: Seperate out function calls inside params
   via  e2eadf9a926 s4:torture: Share test iremotewinspool functions
  from  ed209cfee37 s3:nmbd: small improvements in --help strings

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 232273bfac3e65e69c4b9f4527f93cdfe4724f6b
Author: Justin Stephenson 
Date:   Tue Nov 20 11:25:49 2018 -0500

s4:torture: Enforce Printer Class

Ensure that the provided inf defines Class=Printer for driver installation
to succeed.

Some driver packages(HP Universal Print Driver) include inf files with
other device types such as Class=USB. Attempting to install these will fail
when tested against Windows Server 2016 Print server using
iremotewinspool RPC calls.

Signed-off-by: Justin Stephenson 
Reviewed-by: Andreas Schneider 
Reviewed-by: Bjoern Jacke 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Mon Jan 28 19:34:41 CET 2019 on sn-devel-144

commit 669b135b49db0bb7e89dfe44073ae9dd70500f97
Author: Justin Stephenson 
Date:   Mon Oct 15 17:02:03 2018 -0400

s4:torture: Uninstall driver and cleanup

Uninstall and remove the print driver packages to cleanup
after the install. Cleanup and remove smb directory created
inside print$.

Signed-off-by: Justin Stephenson 
Reviewed-by: Andreas Schneider 
Reviewed-by: Bjoern Jacke 

commit 38967fd954bf143bc2496b03bd1fdbbefffc4421
Author: Justin Stephenson 
Date:   Mon Oct 15 17:01:21 2018 -0400

s4:torture: Add test_ValidatePrinterDriverInstalled

Perform checks against the print driver registry information
to ensure the driver was installed as expected.

Signed-off-by: Justin Stephenson 
Reviewed-by: Andreas Schneider 
Reviewed-by: Bjoern Jacke 

commit c627b4e33b4dfde7cf79502fea4e58cbeecee7fa
Author: Justin Stephenson 
Date:   Fri Sep 14 15:51:44 2018 -0400

s4:torture: Add test_InstallPrinterDriverFromPackage

Install a previous uploaded driver package.

Signed-off-by: Justin Stephenson 
Reviewed-by: Andreas Schneider 
Reviewed-by: Bjoern Jacke 

commit a9f283c84ff9c429620f9e7fdc28b063174e4605
Author: Justin Stephenson 
Date:   Tue Sep 11 15:57:14 2018 -0400

s4:torture: Add test_UploadPrinterDriverPackage

Add test to Upload Print Driver, a prerequisite RPC call before
installing the print driver. The inf driver file to use in this test
will be provided using torture option:inf_file

Signed-off-by: Justin Stephenson 
Reviewed-by: Andreas Schneider 
Reviewed-by: Bjoern Jacke 

commit a9619abb95f5d87686cded5754e4c33f34244ac3
Author: Justin Stephenson 
Date:   Mon Aug 27 11:32:29 2018 -0400

s4:torture: Add test_CopyDriverFiles

Add test to copy driver files from a torture option provided local 
driver_path
to the print$ share of //server/.

Signed-off-by: Justin Stephenson 
Reviewed-by: Andreas Schneider 
Reviewed-by: Bjoern Jacke 

commit 01f1bd3ff1c8916c26e2fc833cedd7120cc76f6e
Author: Justin Stephenson 
Date:   Mon Oct 15 13:55:37 2018 -0400

s4:torture: Add test_init_driver_info function

Validate torture options, obtain and retrieve driver information, and
call driver parsing function to retrieve driver info needed for
performing the test.

Signed-off-by: Justin Stephenson 
Reviewed-by: Andreas Schneider 
Reviewed-by: Bjoern Jacke 

commit 1ac1b3e12fb5d981e94887e30669f7326ff5d6f7
Author

[SCM] Samba Shared Repository - branch master updated

2019-01-10 Thread Björn Jacke
The branch, master has been updated
   via  93c54a4b3c4 statvfs: rename linux_statvfs to posix_statvfs
   via  121db8c08f4 waf:lib/replace: fix a build error with non-gcc 
compilers
   via  7643ee2ea85 s3/smbd: fix utmp hostname logging on Solaris
   via  c53e8de43ce waf: check for utmpx struct member ut_host
  from  36ff1a51266 netcmd: Fix broken samba-tool gpo commands

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 93c54a4b3c4b08ad8a80235ffcffb9bc89fd9ecf
Author: Björn Jacke 
Date:   Wed Jan 9 12:03:53 2019 +0100

statvfs: rename linux_statvfs to posix_statvfs

the statvfs call is posix standard and not Linux specific

Signed-off-by: Bjoern Jacke 
Reviewed-by: Stefan Metzmacher 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Fri Jan 11 02:53:57 CET 2019 on sn-devel-144

commit 121db8c08f45ca15310d9d62b868b4e38353bcc6
Author: Björn Jacke 
Date:   Sun Jan 6 20:41:32 2019 +0100

waf:lib/replace: fix a build error with non-gcc compilers

3a175830e579ab10231439657b2378cd5634 added that variable which should 
have
been an empty initialization here. -Wno-format-zero-length (which might be
unsupported by the compiler) should not be set if we really only want to
initialize the cflags.

Signed-off-by: Bjoern Jacke 
Reviewed-by: Stefan Metzmacher 

commit 7643ee2ea857cfbf727f9bf03f9e3e8cddf84a21
Author: Björn Jacke 
Date:   Sun Jan 6 21:35:14 2019 +0100

s3/smbd: fix utmp hostname logging on Solaris

BUG: https://bugzilla.samba.org/show_bug.cgi?id=2489

Signed-off-by: Bjoern Jacke 
Reviewed-by: Stefan Metzmacher 

commit c53e8de43ce1c86111993f791e5440a656dc75a8
Author: Björn Jacke 
Date:   Sun Jan 6 20:46:20 2019 +0100

waf: check for utmpx struct member ut_host

BUG: https://bugzilla.samba.org/show_bug.cgi?id=2489

Signed-off-by: Bjoern Jacke 
Reviewed-by: Stefan Metzmacher 

---

Summary of changes:
 lib/replace/wscript| 2 +-
 source3/smbd/statvfs.c | 4 ++--
 source3/smbd/utmp.c| 2 +-
 source3/wscript| 2 ++
 4 files changed, 6 insertions(+), 4 deletions(-)


Changeset truncated at 500 lines:

diff --git a/lib/replace/wscript b/lib/replace/wscript
index 6cbae932b20..a7fd25d15bc 100644
--- a/lib/replace/wscript
+++ b/lib/replace/wscript
@@ -857,7 +857,7 @@ def build(bld):
   private_library=True,
   deps='crypt dl nsl socket rt attr' + extra_libs)
 
-replace_test_cflags="-Wno-format-zero-length"
+replace_test_cflags = ''
 if bld.CONFIG_SET('HAVE_WNO_FORMAT_TRUNCATION'):
 replace_test_cflags += " -Wno-format-truncation"
 bld.SAMBA_SUBSYSTEM('replace-test',
diff --git a/source3/smbd/statvfs.c b/source3/smbd/statvfs.c
index 2312d2c8240..aca6752c7fb 100644
--- a/source3/smbd/statvfs.c
+++ b/source3/smbd/statvfs.c
@@ -115,7 +115,7 @@ static int bsd_statvfs(const char *path, vfs_statvfs_struct 
*statbuf)
return ret;
 }
 #elif defined(STAT_STATVFS) && defined(HAVE_FSID_INT)
-static int linux_statvfs(const char *path, vfs_statvfs_struct *statbuf)
+static int posix_statvfs(const char *path, vfs_statvfs_struct *statbuf)
 {
struct statvfs statvfs_buf;
int result;
@@ -169,7 +169,7 @@ int sys_statvfs(const char *path, vfs_statvfs_struct 
*statbuf)
 #if defined(BSD_STYLE_STATVFS)
return bsd_statvfs(path, statbuf);
 #elif defined(STAT_STATVFS) && defined(HAVE_FSID_INT)
-   return linux_statvfs(path, statbuf);
+   return posix_statvfs(path, statbuf);
 #else
/* BB change this to return invalid level */
 #ifdef EOPNOTSUPP
diff --git a/source3/smbd/utmp.c b/source3/smbd/utmp.c
index cdbcc28cce6..4327301e3b1 100644
--- a/source3/smbd/utmp.c
+++ b/source3/smbd/utmp.c
@@ -429,7 +429,7 @@ static void sys_utmp_update(struct utmp *u, const char 
*hostname, bool claim)
else
ux.ut_syslen = 0;
 #endif
-#if defined(HAVE_UT_UT_HOST)
+#if defined(HAVE_UX_UT_HOST)
utmp_strcpy(ux.ut_host, hostname, sizeof(ux.ut_host));
 #endif
 
diff --git a/source3/wscript b/source3/wscript
index f9e9d3013bc..24e52e592c9 100644
--- a/source3/wscript
+++ b/source3/wscript
@@ -809,6 +809,8 @@ msg.msg_accrightslen = sizeof(fd);
 define='HAVE_UT_UT_EXIT')
 conf.CHECK_STRUCTURE_MEMBER('struct utmpx', 'ut_syslen', 
headers='utmpx.h',
 define='HAVE_UX_UT_SYSLEN')
+conf.CHECK_STRUCTURE_MEMBER('struct utmpx', 'ut_host', 
headers='utmpx.h',
+define='HAVE_UX_UT_HOST')
 conf.CHECK_CODE('struct utmp utarg; struct utmp *utreturn; utreturn = 
pututline();',
 'PUTUTLINE_RETURNS_UTMP', headers='utmp.h',
  

[SCM] Samba Shared Repository - branch master updated

2018-12-21 Thread Björn Jacke
The branch, master has been updated
   via  ccd4759aaff nss/waf: check for 
secmethod_table.method_{attrlist,version} for aix >= 5.2
   via  2e1bc87b13c winbind_nss_aix: add incomplete attr_flag 
initializations
   via  c36cf69d591 winbind_nss_aix: use WBFLAG_FROM_NSS
   via  faf50b2d702 winbind_nss_solaris: use WBFLAG_FROM_NSS
   via  fcda61bb41b winbind_nss_netbsd: use WBFLAG_FROM_NSS
   via  4a7368501a9 nsswitch/winbind_nss_linux.c use WBFLAG_FROM_NSS
   via  f95495e1f7d winbind: honor WBFLAG_FROM_NSS along with winbind enum 
users/groups
   via  245b494cebf winbind introduce WBFLAG_FROM_NSS
   via  a9b71194fb1 nsswitch/winbind_nss_aix: reimplement fetching the SID 
of a user
   via  b9496ddb39e winbind_nss_aix: support also S_GROUPSIDS
  from  42dde0bdd3a group_audit: Ensure we still log membership changes 
(with an error) where status != LDB_SUCCESS

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit ccd4759aaff340321792e3b5acab6bc3c8d8cfbb
Author: Bjoern Jacke 
Date:   Fri Dec 21 06:12:56 2018 -0600

nss/waf: check for secmethod_table.method_{attrlist,version} for aix >= 5.2

The original commit 02c9b46fab46ab401a3cf6bb74c8260801c41032 was not ported 
to waf yet.

Signed-off-by: Stefan Metzmacher 
Reviewed-by: Bjoern Jacke 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Sat Dec 22 06:22:22 CET 2018 on sn-devel-144

commit 2e1bc87b13c491f47a6fbcf9549ffa8250a2508b
Author: Björn Jacke 
Date:   Fri Dec 21 15:02:40 2018 +0100

winbind_nss_aix: add incomplete attr_flag initializations

Found by Jürgen Starek, see https://bugzilla.samba.org/show_bug.cgi?id=5157

Signed-off-by: Stefan Metzmacher 
Reviewed-by: Bjoern Jacke 

commit c36cf69d5911b86d73a495308c1bed14004b0659
Author: Björn Jacke 
Date:   Sat Dec 22 02:39:00 2018 +0100

winbind_nss_aix: use WBFLAG_FROM_NSS

Signed-off-by: Bjoern Jacke 
Reviewed-by: Stefan Metzmacher 

commit faf50b2d70228cce6b95a068bbe7da2a40d63419
Author: Björn Jacke 
Date:   Fri Dec 21 01:00:09 2018 +0100

winbind_nss_solaris: use WBFLAG_FROM_NSS

Signed-off-by: Bjoern Jacke 
Reviewed-by: Stefan Metzmacher 

commit fcda61bb41be5e638b9124cb5570bbb2fa214a13
Author: Björn Jacke 
Date:   Fri Dec 21 00:50:38 2018 +0100

winbind_nss_netbsd: use WBFLAG_FROM_NSS

Signed-off-by: Bjoern Jacke 
Reviewed-by: Stefan Metzmacher 

commit 4a7368501a9df8f0b8f29a94faa0c1099c0a477a
Author: Bjoern Jacke 
Date:   Fri Dec 21 05:54:31 2018 -0600

nsswitch/winbind_nss_linux.c use WBFLAG_FROM_NSS

Signed-off-by: Stefan Metzmacher 
Reviewed-by: Bjoern Jacke 

commit f95495e1f7d31dd32a979514d150ecb755a8c1a1
Author: Stefan Metzmacher 
Date:   Thu Dec 20 10:25:01 2018 -0600

winbind: honor WBFLAG_FROM_NSS along with winbind enum users/groups

Signed-off-by: Stefan Metzmacher 
Reviewed-by: Bjoern Jacke 

commit 245b494cebf0fb2c21a4e874141178573a086cfb
Author: Bjoern Jacke 
Date:   Thu Dec 20 10:23:02 2018 -0600

winbind introduce WBFLAG_FROM_NSS

Signed-off-by: Stefan Metzmacher 
Reviewed-by: Bjoern Jacke 

commit a9b71194fb1842be09841f0f29470f42f2ea97c2
Author: Stefan Metzmacher 
Date:   Fri Dec 21 05:51:29 2018 -0600

nsswitch/winbind_nss_aix: reimplement fetching the SID of a user

Signed-off-by: Stefan Metzmacher 
Reviewed-by: Bjoern Jacke 

commit b9496ddb39e685d1f742c26ba390d26f5a3eabfb
Author: Björn Jacke 
Date:   Fri Dec 21 02:20:00 2018 +0100

winbind_nss_aix: support also S_GROUPSIDS

which is used by lsuser up to AIX 5.2, see also 
https://bugzilla.samba.org/show_bug.cgi?id=5157

Signed-off-by: Bjoern Jacke 
Reviewed-by: Stefan Metzmacher 

---

Summary of changes:
 nsswitch/winbind_nss_aix.c  | 171 ++--
 nsswitch/winbind_nss_linux.c|  38 +--
 nsswitch/winbind_nss_netbsd.c   |  10 +-
 nsswitch/winbind_nss_solaris.c  |  33 +++---
 nsswitch/winbind_struct_protocol.h  |   1 +
 nsswitch/wscript_configure  |   9 ++
 source3/winbindd/winbindd_list_groups.c |   5 +
 source3/winbindd/winbindd_list_users.c  |   5 +
 8 files changed, 169 insertions(+), 103 deletions(-)


Changeset truncated at 500 lines:

diff --git a/nsswitch/winbind_nss_aix.c b/nsswitch/winbind_nss_aix.c
index dc44db40ef9..343809a4b34 100644
--- a/nsswitch/winbind_nss_aix.c
+++ b/nsswitch/winbind_nss_aix.c
@@ -269,16 +269,17 @@ static struct group *fill_grent(struct winbindd_gr *gr, 
char *gr_mem)
 /* take a group id and return a filled struct group */
 static struct group *wb_aix_getgrgid(gid_t gid)
 {
-   struct winbindd_response response;
-   struct winbindd_request request;
+   struct winbindd_request r

[SCM] Samba Shared Repository - branch master updated

2018-12-19 Thread Björn Jacke
The branch, master has been updated
   via  49dc04f9f55 samba-tool: don't print backtrace on simple DNS errors
  from  fe7ab7d5132 tests/ntlm_auth: Port ntlm_auth_diagnostics tests to 
python

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 49dc04f9f553c443c78c8073c07ea2a38cde61b2
Author: Björn Jacke 
Date:   Tue Dec 18 12:58:53 2018 +0100

samba-tool: don't print backtrace on simple DNS errors

samba-tool throws backtraces even for simple DNS error
messages, we should not frighten users for no good reason.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=13721

Signed-off-by: Bjoern Jacke 
Reviewed-by: Stefan Metzmacher 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Wed Dec 19 20:58:52 CET 2018 on sn-devel-144

---

Summary of changes:
 python/samba/netcmd/dns.py | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)


Changeset truncated at 500 lines:

diff --git a/python/samba/netcmd/dns.py b/python/samba/netcmd/dns.py
index b50e7b7dd0c..b7459a71acd 100644
--- a/python/samba/netcmd/dns.py
+++ b/python/samba/netcmd/dns.py
@@ -780,7 +780,7 @@ class cmd_zonedelete(Command):
 None)
 except WERRORError as e:
 if e.args[0] == werror.WERR_DNS_ERROR_ZONE_DOES_NOT_EXIST:
-self.outf.write('Zone does not exist and so could not be 
deleted.')
+raise CommandError('Zone does not exist and so could not be 
deleted.')
 raise e
 
 self.outf.write('Zone %s deleted successfully\n' % zone)
@@ -860,7 +860,7 @@ class cmd_query(Command):
 None, record_type, select_flags, None, None)
 except WERRORError as e:
 if e.args[0] == werror.WERR_DNS_ERROR_NAME_DOES_NOT_EXIST:
-self.outf.write('Record or zone does not exist.')
+raise CommandError('Record or zone does not exist.')
 raise e
 
 print_dnsrecords(self.outf, res)
@@ -940,7 +940,7 @@ class cmd_add_record(Command):
  0, server, zone, name, add_rec_buf, 
None)
 except WERRORError as e:
 if e.args[0] == werror.WERR_DNS_ERROR_NAME_DOES_NOT_EXIST:
-self.outf.write('Zone does not exist; record could not be 
added.\n')
+raise CommandError('Zone does not exist; record could not be 
added.')
 raise e
 
 self.outf.write('Record added successfully\n')
@@ -1011,7 +1011,7 @@ class cmd_update_record(Command):
  del_rec_buf)
 except WERRORError as e:
 if e.args[0] == werror.WERR_DNS_ERROR_NAME_DOES_NOT_EXIST:
-self.outf.write('Zone does not exist; record could not be 
updated.\n')
+raise CommandError('Zone does not exist; record could not be 
updated.')
 raise e
 
 self.outf.write('Record updated successfully\n')
@@ -1066,7 +1066,7 @@ class cmd_delete_record(Command):
  del_rec_buf)
 except WERRORError as e:
 if e.args[0] == werror.WERR_DNS_ERROR_NAME_DOES_NOT_EXIST:
-self.outf.write('Zone does not exist; record could not be 
deleted.\n')
+raise CommandError('Zone does not exist; record could not be 
deleted.')
 raise e
 
 self.outf.write('Record deleted successfully\n')


-- 
Samba Shared Repository



[SCM] Samba Shared Repository - branch master updated

2018-04-25 Thread Björn Jacke
The branch, master has been updated
   via  35f2afe printing: return the same error code as windows does on 
upload failures
  from  d7cfb12 lib: #include "util_event.h" only where needed

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 35f2afe411a3b22fb1befadb3bee8da1bc14753c
Author: Björn Jacke <bja...@samba.org>
Date:   Thu Apr 19 16:14:38 2018 +0200

printing: return the same error code as windows does on upload failures

Some print drivers inf files are broken and cause driver installation to 
fail
on Samba servers. Windows returns WERR_APP_INIT_FAILURE in that case, we 
should
do the same. Windows machines are less unlucky with that.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=13395

Signed-off-by: Bjoern Jacke <bja...@samba.org>
Reviewed-by: Andreas Schneider <a...@samba.org>

Autobuild-User(master): Björn Jacke <b...@sernet.de>
Autobuild-Date(master): Wed Apr 25 13:55:25 CEST 2018 on sn-devel-144

---

Summary of changes:
 source3/printing/nt_printing.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c
index 241af37..54357b7 100644
--- a/source3/printing/nt_printing.c
+++ b/source3/printing/nt_printing.c
@@ -1217,7 +1217,7 @@ static WERROR 
move_driver_file_to_download_area(TALLOC_CTX *mem_ctx,
 "to rename [%s] to [%s]: %s\n",
 smb_fname_old->base_name, new_name,
 nt_errstr(status)));
-   ret = WERR_ACCESS_DENIED;
+   ret = WERR_APP_INIT_FAILURE;
goto out;
}
}


-- 
Samba Shared Repository



[SCM] Samba Website Repository - branch master updated

2018-01-12 Thread Björn Jacke
The branch, master has been updated
   via  ee77229 rename o -> old
  from  60b0ff9 add o/ (old doc) samba.css and olddocumentation.png

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit ee77229668e65894726d3fb4a8e12c392d0242ee
Author: Björn Jacke 
Date:   Fri Jan 12 19:47:24 2018 +0100

rename o -> old

---

Summary of changes:
 docs/{o => old}/olddocumentation.png  | Bin
 docs/{o => old}/pl/findsmb.1.pl.html  |   0
 docs/{o => old}/pl/lmhosts.5.pl.html  |   0
 docs/{o => old}/pl/make_smbcodepage.1.pl.html |   0
 docs/{o => old}/pl/make_unicodemap.1.pl.html  |   0
 docs/{o => old}/pl/nmbd.8.pl.html |   0
 docs/{o => old}/pl/nmblookup.1.pl.html|   0
 docs/{o => old}/pl/rpcclient.1.pl.html|   0
 docs/{o => old}/pl/samba.7.pl.html|   0
 docs/{o => old}/pl/smb.conf.5.pl.html |   0
 docs/{o => old}/pl/smbcacls.1.pl.html |   0
 docs/{o => old}/pl/smbclient.1.pl.html|   0
 docs/{o => old}/pl/smbcontrol.1.pl.html   |   0
 docs/{o => old}/pl/smbd.8.pl.html |   0
 docs/{o => old}/pl/smbmnt.8.pl.html   |   0
 docs/{o => old}/pl/smbmount.8.pl.html |   0
 docs/{o => old}/pl/smbpasswd.5.pl.html|   0
 docs/{o => old}/pl/smbpasswd.8.pl.html|   0
 docs/{o => old}/pl/smbsh.1.pl.html|   0
 docs/{o => old}/pl/smbspool.8.pl.html |   0
 docs/{o => old}/pl/smbstatus.1.pl.html|   0
 docs/{o => old}/pl/smbtar.1.pl.html   |   0
 docs/{o => old}/pl/smbumount.8.pl.html|   0
 docs/{o => old}/pl/swat.8.pl.html |   0
 docs/{o => old}/pl/testparm.1.pl.html |   0
 docs/{o => old}/pl/testprns.1.pl.html |   0
 docs/{o => old}/pl/wbinfo.1.pl.html   |   0
 docs/{o => old}/pl/winbindd.8.pl.html |   0
 docs/{o => old}/samba.css |   0
 29 files changed, 0 insertions(+), 0 deletions(-)
 rename docs/{o => old}/olddocumentation.png (100%)
 rename docs/{o => old}/pl/findsmb.1.pl.html (100%)
 rename docs/{o => old}/pl/lmhosts.5.pl.html (100%)
 rename docs/{o => old}/pl/make_smbcodepage.1.pl.html (100%)
 rename docs/{o => old}/pl/make_unicodemap.1.pl.html (100%)
 rename docs/{o => old}/pl/nmbd.8.pl.html (100%)
 rename docs/{o => old}/pl/nmblookup.1.pl.html (100%)
 rename docs/{o => old}/pl/rpcclient.1.pl.html (100%)
 rename docs/{o => old}/pl/samba.7.pl.html (100%)
 rename docs/{o => old}/pl/smb.conf.5.pl.html (100%)
 rename docs/{o => old}/pl/smbcacls.1.pl.html (100%)
 rename docs/{o => old}/pl/smbclient.1.pl.html (100%)
 rename docs/{o => old}/pl/smbcontrol.1.pl.html (100%)
 rename docs/{o => old}/pl/smbd.8.pl.html (100%)
 rename docs/{o => old}/pl/smbmnt.8.pl.html (100%)
 rename docs/{o => old}/pl/smbmount.8.pl.html (100%)
 rename docs/{o => old}/pl/smbpasswd.5.pl.html (100%)
 rename docs/{o => old}/pl/smbpasswd.8.pl.html (100%)
 rename docs/{o => old}/pl/smbsh.1.pl.html (100%)
 rename docs/{o => old}/pl/smbspool.8.pl.html (100%)
 rename docs/{o => old}/pl/smbstatus.1.pl.html (100%)
 rename docs/{o => old}/pl/smbtar.1.pl.html (100%)
 rename docs/{o => old}/pl/smbumount.8.pl.html (100%)
 rename docs/{o => old}/pl/swat.8.pl.html (100%)
 rename docs/{o => old}/pl/testparm.1.pl.html (100%)
 rename docs/{o => old}/pl/testprns.1.pl.html (100%)
 rename docs/{o => old}/pl/wbinfo.1.pl.html (100%)
 rename docs/{o => old}/pl/winbindd.8.pl.html (100%)
 rename docs/{o => old}/samba.css (100%)


Changeset truncated at 500 lines:

diff --git a/docs/o/olddocumentation.png b/docs/old/olddocumentation.png
similarity index 100%
rename from docs/o/olddocumentation.png
rename to docs/old/olddocumentation.png
diff --git a/docs/o/pl/findsmb.1.pl.html b/docs/old/pl/findsmb.1.pl.html
similarity index 100%
rename from docs/o/pl/findsmb.1.pl.html
rename to docs/old/pl/findsmb.1.pl.html
diff --git a/docs/o/pl/lmhosts.5.pl.html b/docs/old/pl/lmhosts.5.pl.html
similarity index 100%
rename from docs/o/pl/lmhosts.5.pl.html
rename to docs/old/pl/lmhosts.5.pl.html
diff --git a/docs/o/pl/make_smbcodepage.1.pl.html 
b/docs/old/pl/make_smbcodepage.1.pl.html
similarity index 100%
rename from docs/o/pl/make_smbcodepage.1.pl.html
rename to docs/old/pl/make_smbcodepage.1.pl.html
diff --git a/docs/o/pl/make_unicodemap.1.pl.html 
b/docs/old/pl/make_unicodemap.1.pl.html
similarity index 100%
rename from docs/o/pl/make_unicodemap.1.pl.html
rename to docs/old/pl/make_unicodemap.1.pl.html
diff --git a/docs/o/pl/nmbd.8.pl.html b/docs/old/pl/nmbd.8.pl.html
similarity index 100%
rename from docs/o/pl/nmbd.8.pl.html
rename to docs/old/pl/nmbd.8.pl.html
diff --git a/docs/o/pl/nmblookup.1.pl.html b/docs/old/pl/nmblookup.1.pl.html
similarity index 100%
rename from docs/o/pl/nmblookup.1.pl.html
rename to docs/old/pl/nmblookup.1.pl.html
diff --git a/docs/o/pl/rpcclient.1.pl.html 

[SCM] Samba Website Repository - branch master updated

2018-01-11 Thread Björn Jacke
The branch, master has been updated
   via  60b0ff9 add o/ (old doc) samba.css and olddocumentation.png
  from  52153ea move ancient pl man pages to o (old) folder

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 60b0ff9688cfa6a66b3d7667d342e15af7724569
Author: Björn Jacke 
Date:   Fri Jan 12 03:18:43 2018 +0100

add o/ (old doc) samba.css and olddocumentation.png

---

Summary of changes:
 docs/o/olddocumentation.png | Bin 0 -> 16564 bytes
 docs/o/samba.css|  82 
 2 files changed, 82 insertions(+)
 create mode 100644 docs/o/olddocumentation.png
 create mode 100644 docs/o/samba.css


Changeset truncated at 500 lines:

diff --git a/docs/o/olddocumentation.png b/docs/o/olddocumentation.png
new file mode 100644
index 000..683ef77
Binary files /dev/null and b/docs/o/olddocumentation.png differ
diff --git a/docs/o/samba.css b/docs/o/samba.css
new file mode 100644
index 000..6d09309
--- /dev/null
+++ b/docs/o/samba.css
@@ -0,0 +1,82 @@
+BODY {
+   font-family: helvetica, arial, lucida sans, sans-serif;
+   background-color: white;
+   background-image: url(olddocumentation.png);
+
+}
+
+H1, H2, H3 {
+   color: blue;
+   font-size: 120%;
+   padding: 2px;
+   margin-top: 0px;
+}
+
+H1 {
+   background-color: #FF;
+   color: blue;
+}
+
+H2 {
+   background-color: #FF;
+   color: blue;
+}
+
+H3 {
+   background-color: #FF;
+   color: blue;
+}
+
+H4 {
+   color: blue;
+}
+
+TR.qandadiv TD {
+   padding-top: 1em;
+}
+
+DIV.navhead {
+   font-size: 80%;
+}
+
+A:link {
+   color: #36F;
+}
+
+A:visited {
+   color: #96C;
+}
+
+A:active {
+   color: #F63;
+}
+
+TR.question {
+   color: #33C;
+   font-weight: bold;
+}
+
+TR.question TD {
+   padding-top: 1em;
+}
+
+DIV.variablelist {
+   padding-left: 2em;
+   color: #33C;
+}
+
+P {
+   color: black;
+}
+
+DIV.note, DIV.warning, DIV.caution, DIV.tip, DIV.important {
+   border: dashed 1px;
+   background-color: #FF;
+   width: 40em;
+}
+
+PRE.programlisting, PRE.screen {
+   border: #630 1px dashed;
+   color: #630;
+}
+


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2018-01-11 Thread Björn Jacke
The branch, master has been updated
   via  52153ea move ancient pl man pages to o (old) folder
  from  2bd652d Add Samba 4.7.4 to the list of releases.

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 52153ea46c12d87dea397c6a03b764ef39609a5e
Author: Björn Jacke 
Date:   Fri Jan 12 02:42:32 2018 +0100

move ancient pl man pages to o (old) folder

---

Summary of changes:
 docs/{ => o}/pl/findsmb.1.pl.html  | 4 ++--
 docs/{ => o}/pl/lmhosts.5.pl.html  | 2 +-
 docs/{ => o}/pl/make_smbcodepage.1.pl.html | 2 +-
 docs/{ => o}/pl/make_unicodemap.1.pl.html  | 2 +-
 docs/{ => o}/pl/nmbd.8.pl.html | 2 +-
 docs/{ => o}/pl/nmblookup.1.pl.html| 2 +-
 docs/{ => o}/pl/rpcclient.1.pl.html| 2 +-
 docs/{ => o}/pl/samba.7.pl.html| 2 +-
 docs/{ => o}/pl/smb.conf.5.pl.html | 2 +-
 docs/{ => o}/pl/smbcacls.1.pl.html | 2 +-
 docs/{ => o}/pl/smbclient.1.pl.html| 2 +-
 docs/{ => o}/pl/smbcontrol.1.pl.html   | 2 +-
 docs/{ => o}/pl/smbd.8.pl.html | 2 +-
 docs/{ => o}/pl/smbmnt.8.pl.html   | 2 +-
 docs/{ => o}/pl/smbmount.8.pl.html | 2 +-
 docs/{ => o}/pl/smbpasswd.5.pl.html| 2 +-
 docs/{ => o}/pl/smbpasswd.8.pl.html| 2 +-
 docs/{ => o}/pl/smbsh.1.pl.html| 2 +-
 docs/{ => o}/pl/smbspool.8.pl.html | 2 +-
 docs/{ => o}/pl/smbstatus.1.pl.html| 2 +-
 docs/{ => o}/pl/smbtar.1.pl.html   | 2 +-
 docs/{ => o}/pl/smbumount.8.pl.html| 2 +-
 docs/{ => o}/pl/swat.8.pl.html | 2 +-
 docs/{ => o}/pl/testparm.1.pl.html | 2 +-
 docs/{ => o}/pl/testprns.1.pl.html | 2 +-
 docs/{ => o}/pl/wbinfo.1.pl.html   | 2 +-
 docs/{ => o}/pl/winbindd.8.pl.html | 2 +-
 27 files changed, 28 insertions(+), 28 deletions(-)
 rename docs/{ => o}/pl/findsmb.1.pl.html (98%)
 rename docs/{ => o}/pl/lmhosts.5.pl.html (98%)
 rename docs/{ => o}/pl/make_smbcodepage.1.pl.html (99%)
 rename docs/{ => o}/pl/make_unicodemap.1.pl.html (98%)
 rename docs/{ => o}/pl/nmbd.8.pl.html (99%)
 rename docs/{ => o}/pl/nmblookup.1.pl.html (99%)
 rename docs/{ => o}/pl/rpcclient.1.pl.html (99%)
 rename docs/{ => o}/pl/samba.7.pl.html (99%)
 rename docs/{ => o}/pl/smb.conf.5.pl.html (99%)
 rename docs/{ => o}/pl/smbcacls.1.pl.html (99%)
 rename docs/{ => o}/pl/smbclient.1.pl.html (99%)
 rename docs/{ => o}/pl/smbcontrol.1.pl.html (98%)
 rename docs/{ => o}/pl/smbd.8.pl.html (99%)
 rename docs/{ => o}/pl/smbmnt.8.pl.html (97%)
 rename docs/{ => o}/pl/smbmount.8.pl.html (99%)
 rename docs/{ => o}/pl/smbpasswd.5.pl.html (99%)
 rename docs/{ => o}/pl/smbpasswd.8.pl.html (99%)
 rename docs/{ => o}/pl/smbsh.1.pl.html (98%)
 rename docs/{ => o}/pl/smbspool.8.pl.html (98%)
 rename docs/{ => o}/pl/smbstatus.1.pl.html (98%)
 rename docs/{ => o}/pl/smbtar.1.pl.html (98%)
 rename docs/{ => o}/pl/smbumount.8.pl.html (97%)
 rename docs/{ => o}/pl/swat.8.pl.html (99%)
 rename docs/{ => o}/pl/testparm.1.pl.html (98%)
 rename docs/{ => o}/pl/testprns.1.pl.html (98%)
 rename docs/{ => o}/pl/wbinfo.1.pl.html (98%)
 rename docs/{ => o}/pl/winbindd.8.pl.html (99%)


Changeset truncated at 500 lines:

diff --git a/docs/pl/findsmb.1.pl.html b/docs/o/pl/findsmb.1.pl.html
similarity index 98%
rename from docs/pl/findsmb.1.pl.html
rename to docs/o/pl/findsmb.1.pl.html
index fa626fe..d918279 100755
--- a/docs/pl/findsmb.1.pl.html
+++ b/docs/o/pl/findsmb.1.pl.html
@@ -1,5 +1,5 @@
 findsmb
\ No newline at end of file
+>
diff --git a/docs/pl/lmhosts.5.pl.html b/docs/o/pl/lmhosts.5.pl.html
similarity index 98%
rename from docs/pl/lmhosts.5.pl.html
rename to docs/o/pl/lmhosts.5.pl.html
index 419a50e..5cb2c18 100755
--- a/docs/pl/lmhosts.5.pl.html
+++ b/docs/o/pl/lmhosts.5.pl.html
@@ -1,5 +1,5 @@
 lmhostsmake_smbcodepagemake_unicodemapnmbdnmblookuprpcclientsambasmb.confsmbcaclssmbclientsmbcontrolsmbdsmbmntsmbmountsmbpasswdsmbpasswdsmbshsmbspoolsmbstatussmbtarsmbumountswattestparmtestprnswbinfowinbindd

[SCM] Samba Shared Repository - branch master updated

2018-01-05 Thread Björn Jacke
The branch, master has been updated
   via  3cbeaf4 docs-xml: add basic Makefile dependencies for targets that 
use xsltproc
   via  9b27948 docs-xml: set a reasonable XML_CATALOG_FILES in Makefile
   via  a2f5b3b docs-xml: generate build/catalog.xml via Makefile target
  from  2245a4b autobuild: fix quoting of --restrict-tests

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 3cbeaf40937082bd7072d715ae02aa0989835432
Author: Björn Jacke <bja...@samba.org>
Date:   Thu Jan 4 16:35:12 2018 +0100

docs-xml: add basic Makefile dependencies for targets that use xsltproc

Signed-off-by: Bjoern Jacke <bja...@samba.org>
Reviewed-by: Karolin Seeger <ksee...@samba.org>

Autobuild-User(master): Björn Jacke <b...@sernet.de>
Autobuild-Date(master): Fri Jan  5 19:55:29 CET 2018 on sn-devel-144

commit 9b27948d6540b17d99bed3e39e75b2508f05a489
Author: Björn Jacke <bja...@samba.org>
Date:   Thu Jan 4 16:19:13 2018 +0100

docs-xml: set a reasonable XML_CATALOG_FILES in Makefile

Signed-off-by: Bjoern Jacke <bja...@samba.org>
Reviewed-by: Karolin Seeger <ksee...@samba.org>

commit a2f5b3b8e12bfc3d7182a406526b0d7edaf58a31
Author: Björn Jacke <bja...@samba.org>
Date:   Thu Jan 4 16:12:28 2018 +0100

docs-xml: generate build/catalog.xml via Makefile target

Signed-off-by: Bjoern Jacke <bja...@samba.org>
Reviewed-by: Karolin Seeger <ksee...@samba.org>

---

Summary of changes:
 docs-xml/Makefile | 25 -
 1 file changed, 16 insertions(+), 9 deletions(-)


Changeset truncated at 500 lines:

diff --git a/docs-xml/Makefile b/docs-xml/Makefile
index d69238b..ba49eae 100644
--- a/docs-xml/Makefile
+++ b/docs-xml/Makefile
@@ -6,6 +6,8 @@
 #  Jelmer Vernooij <jel...@samba.org>
 include Makefile.settings
 
+export XML_CATALOG_FILES := $(XML_CATALOG_FILES) /etc/xml/catalog  $(shell 
pwd)/build/catalog.xml
+
 # Docs to build
 MAIN_DOCS = $(patsubst %/index.xml,%,$(wildcard */index.xml))
 MANPAGES = $(sort $(wildcard $(MANPAGEDIR)/*.?.xml))
@@ -16,6 +18,8 @@ DBLATEX_OPTIONS = -p xslt/latex.xsl -i xslt/latex
 
 DATETIME := $(shell date +%Y%m%d%H%M%S)
 
+XSLTPROC_DEPS = build/catalog.xml build/DTD/samba.build.version
+
 ifeq ($(PROFILE), Y)
 XSLTPROC += --profile --load-trace --timing
 endif
@@ -87,16 +91,16 @@ check:: validate
 
 # Intermediate docbook docs
 #
-$(DOCBOOKDIR)/%.xml: %/index.xml xslt/expand-sambadoc.xsl
+$(DOCBOOKDIR)/%.xml: %/index.xml xslt/expand-sambadoc.xsl $(XSLTPROC_DEPS)
@echo "Converting Samba-specific tags for $*..."
@mkdir -p $(@D)
@$(XSLTPROC) --stringparam latex.imagebasedir "$*/"  --stringparam 
noreference 0  --xinclude --output $@ xslt/expand-sambadoc.xsl $<
 
-$(DOCBOOKDIR)/manpages/%.xml: $(MANPAGEDIR)/%.xml xslt/expand-sambadoc.xsl 
Makefile.settings
+$(DOCBOOKDIR)/manpages/%.xml: $(MANPAGEDIR)/%.xml xslt/expand-sambadoc.xsl 
Makefile.settings $(XSLTPROC_DEPS)
@mkdir -p $(@D)
$(XSLTPROC) --xinclude --stringparam noreference 0 --output $@ 
xslt/expand-sambadoc.xsl $<
 
-$(DOCBOOKDIR)/manpages/index.xml: $(MANPAGES) xslt/manpage-summary.xsl
+$(DOCBOOKDIR)/manpages/index.xml: $(MANPAGES) xslt/manpage-summary.xsl 
$(XSLTPROC_DEPS)
@mkdir -p $(@D)
echo "" > $@
$(XSLTPROC) xslt/manpage-summary.xsl $(MANPAGES) >> $@
@@ -107,22 +111,22 @@ $(HTMLDIR)/index.html: htmldocs.html
@mkdir -p $(@D)
cp $< $@
 
-$(HTMLDIR)/%/index.html: $(DOCBOOKDIR)/%.xml $(HTMLDIR)/%/samba.css 
xslt/html-chunk.xsl %-images-html-chunks
+$(HTMLDIR)/%/index.html: $(DOCBOOKDIR)/%.xml $(HTMLDIR)/%/samba.css 
xslt/html-chunk.xsl %-images-html-chunks $(XSLTPROC_DEPS)
@mkdir -p $(@D)
$(XSLTPROC) --stringparam base.dir "$(HTMLDIR)/$*/" xslt/html-chunk.xsl 
$<
 
 # Single large HTML files
-$(OUTPUTDIR)/%/samba.css: xslt/html/samba.css
+$(OUTPUTDIR)/%/samba.css: xslt/html/samba.css $(XSLTPROC_DEPS)
@mkdir -p $(@D)
cp $< $@
 
 $(patsubst %,$(HTMLDIR)/%.html,$(MAIN_DOCS)): $(HTMLDIR)/%.html: 
%-images-html-single
 
-$(HTMLDIR)/%.html: $(DOCBOOKDIR)/%.xml $(HTMLDIR)/samba.css xslt/html.xsl 
+$(HTMLDIR)/%.html: $(DOCBOOKDIR)/%.xml $(HTMLDIR)/samba.css xslt/html.xsl 
$(XSLTPROC_DEPS)
$(XSLTPROC) --output $@ xslt/html.xsl $<
 
 # Attributions
-%-attributions.xml: 
+%-attributions.xml: $(XSLTPROC_DEPS)
@echo "Generating attributions file $@ from $*/"
@cp -f templates/attributions.xml $@
@$(XSLTPROC) --xinclude -o $@ xslt/generate-attributions.xsl 
$*/index.xml 
@@ -139,7 +143,7 @@ $(TXTDIR)/%.txt: $(HTMLDIR)/%.html
@$(DBLATEX) $(DBLATEX_OPTIONS) -t tex -o $@ $<
 
 # Dependency files
-%.d: $(DOCBOOKDIR)/%

[SCM] Samba Shared Repository - branch master updated

2018-01-04 Thread Björn Jacke
The branch, master has been updated
   via  7a0a765 docs-xml: plain file URIs need three slashes
   via  03f0ba7 docs-xml: figure out samba version for the docs 
automatically
  from  114f5da s3: smbd: Use identical logic to test for kernel oplocks on 
a share.

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 7a0a765d535abdd76d86ea88251489d2839ec59b
Author: Björn Jacke <bja...@samba.org>
Date:   Thu Jan 4 12:55:26 2018 +0100

docs-xml: plain file URIs need three slashes

Signed-off-by: Bjoern Jacke <bja...@samba.org>

Autobuild-User(master): Björn Jacke <b...@sernet.de>
Autobuild-Date(master): Thu Jan  4 20:32:21 CET 2018 on sn-devel-144

commit 03f0ba71953b2738261e897074e7d91c6022c1b7
Author: Björn Jacke <bja...@samba.org>
Date:   Thu Jan 4 10:38:05 2018 +0100

docs-xml: figure out samba version for the docs automatically

Signed-off-by: Bjoern Jacke <bjo...@samba.org>
Reviewed-by: Karolin Seeger <ksee...@samba.org>

---

Summary of changes:
 docs-xml/build/catalog.xml.in | 8 
 docs-xml/configure.ac | 8 +++-
 2 files changed, 11 insertions(+), 5 deletions(-)


Changeset truncated at 500 lines:

diff --git a/docs-xml/build/catalog.xml.in b/docs-xml/build/catalog.xml.in
index 77bf87e..77ec4f2 100644
--- a/docs-xml/build/catalog.xml.in
+++ b/docs-xml/build/catalog.xml.in
@@ -6,16 +6,16 @@
 
 http://www.samba.org/samba/DTD/;
-   rewritePrefix="file://@abs_top_srcdir@/build/DTD/"/>
+   rewritePrefix="file:///@abs_top_srcdir@/build/DTD/"/>
 
 http://www.samba.org/samba/LOCAL.BUILDDIR.DTD/;
-   rewritePrefix="file://@abs_top_builddir@/build/DTD/"/>
+   rewritePrefix="file:///@abs_top_builddir@/build/DTD/"/>
 
 http://www.gnu.org/licenses/;
-   
rewritePrefix="file://@abs_top_srcdir@/Samba3-ByExample/"/>
+   
rewritePrefix="file:///@abs_top_srcdir@/Samba3-ByExample/"/>
 http://www.samba.org/samba/smbdotconf/;
-   rewritePrefix="file://@abs_top_builddir@/smbdotconf/"/>
+   rewritePrefix="file:///@abs_top_builddir@/smbdotconf/"/>
 
diff --git a/docs-xml/configure.ac b/docs-xml/configure.ac
index 8c26692..9a7f9ce 100644
--- a/docs-xml/configure.ac
+++ b/docs-xml/configure.ac
@@ -55,8 +55,14 @@ fi
 
 AC_SUBST(TARGETS)
 
+. ../VERSION
 if test x"$DOC_VERSION" = x; then
-   AC_MSG_ERROR([Please export DOC_VERSION variable])
+   #AC_MSG_ERROR([Please export DOC_VERSION variable])
+   VERSION_SUFFIX=""
+   if test x"$SAMBA_VERSION_PRE_RELEASE" != x; then
+   VERSION_SUFFIX=pre
+   fi
+   
DOC_VERSION=${SAMBA_VERSION_MAJOR}.${SAMBA_VERSION_MINOR}.${SAMBA_VERSION_RELEASE}${VERSION_SUFFIX}
 else
AC_MSG_RESULT([DOC_VERSION: ${DOC_VERSION}])
 fi


-- 
Samba Shared Repository



[SCM] Samba Shared Repository - branch master updated

2018-01-02 Thread Björn Jacke
The branch, master has been updated
   via  7277590 smbldap: don't try start tls on ldaps:// connections
   via  e29d31f doc-xml: fix dependency as the  xml targets depend on 
Makefile.settings
  from  d8d21ec Happy New Year 2018!

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 7277590f6d746113ff347c7fce3d8ef4d01cc715
Author: Bjoern Jacke <bja...@samba.org>
Date:   Thu Dec 7 16:06:38 2017 +0100

smbldap: don't try start tls on ldaps:// connections

BUG: https://bugzilla.samba.org/show_bug.cgi?id=6079

Signed-off-by: Bjoern Jacke <bja...@samba.org>
Reviewed-by: Volker Lendecke <v...@samba.org>

Autobuild-User(master): Björn Jacke <b...@sernet.de>
Autobuild-Date(master): Tue Jan  2 18:01:17 CET 2018 on sn-devel-144

commit e29d31f74f4c2a0f1127d9fb92118b6e42763bf1
Author: Björn Jacke <bja...@samba.org>
Date:   Wed Dec 13 13:39:10 2017 +0100

doc-xml: fix dependency as the  xml targets depend on Makefile.settings

Signed-off-by: Bjoern Jacke <bja...@samba.org>
Reviewed-by: Stefan Metzmacher <me...@samba.org>

---

Summary of changes:
 docs-xml/Makefile | 2 +-
 source3/lib/smbldap.c | 8 +++-
 2 files changed, 8 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/docs-xml/Makefile b/docs-xml/Makefile
index 6a33b17..d69238b 100644
--- a/docs-xml/Makefile
+++ b/docs-xml/Makefile
@@ -92,7 +92,7 @@ $(DOCBOOKDIR)/%.xml: %/index.xml xslt/expand-sambadoc.xsl
@mkdir -p $(@D)
@$(XSLTPROC) --stringparam latex.imagebasedir "$*/"  --stringparam 
noreference 0  --xinclude --output $@ xslt/expand-sambadoc.xsl $<
 
-$(DOCBOOKDIR)/manpages/%.xml: $(MANPAGEDIR)/%.xml xslt/expand-sambadoc.xsl
+$(DOCBOOKDIR)/manpages/%.xml: $(MANPAGEDIR)/%.xml xslt/expand-sambadoc.xsl 
Makefile.settings
@mkdir -p $(@D)
$(XSLTPROC) --xinclude --stringparam noreference 0 --output $@ 
xslt/expand-sambadoc.xsl $<
 
diff --git a/source3/lib/smbldap.c b/source3/lib/smbldap.c
index 71166f6..5a67ab7 100644
--- a/source3/lib/smbldap.c
+++ b/source3/lib/smbldap.c
@@ -604,7 +604,7 @@ static void smbldap_store_state(LDAP *ld, struct 
smbldap_state *smbldap_state)
 int smbldap_start_tls(LDAP *ldap_struct, int version)
 { 
 #ifdef LDAP_OPT_X_TLS
-   int rc;
+   int rc,tls;
 #endif
 
if (lp_ldap_ssl() != LDAP_SSL_START_TLS) {
@@ -612,6 +612,12 @@ int smbldap_start_tls(LDAP *ldap_struct, int version)
}
 
 #ifdef LDAP_OPT_X_TLS
+   /* check if we use ldaps already */
+   ldap_get_option(ldap_struct, LDAP_OPT_X_TLS, );
+   if (tls == LDAP_OPT_X_TLS_HARD) {
+   return LDAP_SUCCESS;
+   }
+
if (version != LDAP_VERSION3) {
DEBUG(0, ("Need LDAPv3 for Start TLS\n"));
return LDAP_OPERATIONS_ERROR;


-- 
Samba Shared Repository



[SCM] Samba Shared Repository - branch master updated

2017-11-15 Thread Björn Jacke
The branch, master has been updated
   via  7005609 pam_winbind: initial Turkish translation
  from  2e5ea35 smbtorture: Remove an unused variable

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 700560924fe8188dd2ef449820a80c4bec6ec331
Author: ulkuderner <caglar.ulkuder...@gmail.com>
Date:   Tue Aug 1 12:01:22 2017 +0300

pam_winbind: initial Turkish translation

Reviewed-by: Bjoern Jacke <bja...@samba.org>
Reviewed-by: Karolin Seeger <ksee...@samba.org>

Autobuild-User(master): Björn Jacke <b...@sernet.de>
Autobuild-Date(master): Wed Nov 15 13:52:05 CET 2017 on sn-devel-144

---

Summary of changes:
 source3/locale/pam_winbind/{pl.po => tr.po} | 292 ++--
 1 file changed, 141 insertions(+), 151 deletions(-)
 copy source3/locale/pam_winbind/{pl.po => tr.po} (62%)


Changeset truncated at 500 lines:

diff --git a/source3/locale/pam_winbind/pl.po b/source3/locale/pam_winbind/tr.po
similarity index 62%
copy from source3/locale/pam_winbind/pl.po
copy to source3/locale/pam_winbind/tr.po
index 4fd78f2..ae3d313 100644
--- a/source3/locale/pam_winbind/pl.po
+++ b/source3/locale/pam_winbind/tr.po
@@ -1,182 +1,187 @@
-# This file is distributed under the same license as the package.
+# This file is distributed under the same license as the pam_winbind package.
 #
 # Copyright (C) 2009 Lars Mueller <l...@samba.org>
+# Copyright (C) 2010 Christian Perrier <bubu...@debian.org>
 msgid ""
 msgstr ""
 "Project-Id-Version: pam_winbind\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2010-03-06 01:55+0800\n"
-"PO-Revision-Date: 2009-02-13 18:27\n"
-"Last-Translator: Novell Language <langu...@novell.com>\n"
-"Language-Team: Novell Language <langu...@novell.com>\n"
+"PO-Revision-Date: 2017-07-02 15:23+0300\n"
+"Last-Translator: Caglar Ulkuderner <cag...@profelis.com.tr>\n"
+"Language-Team: French <debian-l10n-fre...@lists.debian.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 2.0.2\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Language: tr\n"
 
 #: ../../../nsswitch/pam_winbind.c:583 ../../libsmb/nterr.c:558
 msgid "Success"
-msgstr "Sukces"
+msgstr "Başarılı"
 
 #: ../../../nsswitch/pam_winbind.c:585
-msgid "No primary Domain Controller available"
-msgstr "Brak podstawowego kontolera domeny"
+msgid "No primary Domain Controler available"
+msgstr "Birincil Etki Alanı Denetleyicisi bulunamadı."
 
 #: ../../../nsswitch/pam_winbind.c:587
 msgid "No domain controllers found"
-msgstr "Nie odnaleziono kontrolerów domen"
+msgstr "Hiçbir etki alanı denetleyicileri bulunamadı."
 
 #: ../../../nsswitch/pam_winbind.c:589 ../../libsmb/nterr.c:566
 msgid "No logon servers"
-msgstr "Brak serwerów logowania"
+msgstr "Hiçbir oturum açma sunucusu bulunamadı."
 
 #: ../../../nsswitch/pam_winbind.c:591
 msgid "Password too short"
-msgstr "Zbyt krótkie hasło"
+msgstr "Parola çok kısa."
 
 #: ../../../nsswitch/pam_winbind.c:593
 msgid "The password of this user is too recent to change"
-msgstr "Hasło tego użytkownika jest zbyt nowe, aby je zmienić"
+msgstr "Kullanıcının parolası değiştirmek için çok yeni."
 
 #: ../../../nsswitch/pam_winbind.c:595
 msgid "Password is already in password history"
-msgstr "Hasło znajduje się już w historii haseł."
+msgstr "Girilen parola, parola geçmişinde mevcut."
 
 #: ../../../nsswitch/pam_winbind.c:597
 msgid "Your password has expired"
-msgstr "Hasło użytkownika wygasło"
+msgstr "Parolanızın süresi dolmuş."
 
 #: ../../../nsswitch/pam_winbind.c:599
 msgid "You need to change your password now"
-msgstr "Zmiana hasła jest wymagana w tej chwili"
+msgstr "Parolanızı değiştirmeniz gerekiyor."
 
 #: ../../../nsswitch/pam_winbind.c:601
 msgid "You are not allowed to logon from this workstation"
-msgstr "Brak zezwolenia na logowanie się z tej stacji roboczej"
+msgstr "Bu iş istasyonunda oturum açmanıza izin verilmiyor."
 
 #: ../../../nsswitch/pam_winbind.c:603
 msgid "You are not allowed to logon at this time"
-msgstr "Brak zezwolenia na logowanie się w tej chwili"
+msgstr "Bu saatte oturum açmanıza izin verilmiyor."
 
 #: ../../../nsswitch/pam_winbind.c:605
 msgid "Your account has expired. Please contact your System administr

[SCM] Samba Website Repository - branch master updated

2017-10-17 Thread Björn Jacke
The branch, master has been updated
   via  f564cb5 sdc_ms_trip: make video super-script description sub-script
  from  a0fdc08 NEWS[sdc_ms_trip]: embed SDC presentation videos

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit f564cb5ea2bce6d4b2ee00b7ed924f1e54d80a1b
Author: Björn Jacke 
Date:   Tue Oct 17 21:26:56 2017 +0200

sdc_ms_trip: make video super-script description sub-script

---

Summary of changes:
 posted_news/20171017-162838.sdc_ms_trip.body.html | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)


Changeset truncated at 500 lines:

diff --git a/posted_news/20171017-162838.sdc_ms_trip.body.html 
b/posted_news/20171017-162838.sdc_ms_trip.body.html
index dfcd1bd..293b70e 100644
--- a/posted_news/20171017-162838.sdc_ms_trip.body.html
+++ b/posted_news/20171017-162838.sdc_ms_trip.body.html
@@ -19,27 +19,28 @@ MM's, Metze, really ?).
 
 
 Samba related videos from SNIA-SDC
+https://www.youtube-nocookie.com/embed/AelkHAH8bZE?rel=0showinfo=0; 
frameborder="0" allowfullscreen>
 
 SDC 2017 - SMB3 and Beyond for Linux: State of Unix Extensions, as We
 Drive Toward Optimal POSIX Compatibility and Performance - Steven
 French
 
-https://www.youtube-nocookie.com/embed/AelkHAH8bZE?rel=0showinfo=0; 
frameborder="0" allowfullscreen>
+https://www.youtube-nocookie.com/embed/ErHr4TWmI38?rel=0showinfo=0; 
frameborder="0" allowfullscreen>
 
 SDC 2017 - Windows Authentication With Multiple Domains and Forests -
 Stefan Metzmacher
 
-https://www.youtube-nocookie.com/embed/ErHr4TWmI38?rel=0showinfo=0; 
frameborder="0" allowfullscreen>
+https://www.youtube-nocookie.com/embed/-0DreZ8ZNfI?rel=0showinfo=0; 
frameborder="0" allowfullscreen>
 
 SDC 2017 - Understanding and Improving Samba Fileserver Performance -
 Ralph Bhme
 
-https://www.youtube-nocookie.com/embed/-0DreZ8ZNfI?rel=0showinfo=0; 
frameborder="0" allowfullscreen>
+https://www.youtube-nocookie.com/embed/AAQbgRvrGHI?rel=0showinfo=0; 
frameborder="0" allowfullscreen>
 
 SDC 2017-SMB3 POSIX Extensions: Client Perspective and Server
 Perspective - Steve French and Jeremy Allison
 
-https://www.youtube-nocookie.com/embed/AAQbgRvrGHI?rel=0showinfo=0; 
frameborder="0" allowfullscreen>
+
 
 Some of the exciting things that we worked on were:
 


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2017-08-23 Thread Björn Jacke
The branch, master has been updated
   via  d9cd74a team.html: remove Ira's mail address and company info
  from  383a557 NEWS[4.7.0rc4]: Samba 4.7.0rc4 Available for Download

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit d9cd74a9d36be79efabe1435aa140b130b4acc9e
Author: Björn Jacke 
Date:   Wed Aug 23 10:46:52 2017 +0200

team.html: remove Ira's mail address and company info

Ira asked Jeremy, who asked me to remove that info from the team site.

---

Summary of changes:
 team/index.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/team/index.html b/team/index.html
index baab197..790f115 100755
--- a/team/index.html
+++ b/team/index.html
@@ -55,7 +55,7 @@ mailing list and start contributing to the development of 
Samba.
 mailto:k...@samba.org;>Kai Blin
 mailto:s...@samba.org;>Ralph Bhme(http://www.sernet.de/en/;>SerNet)
 mailto:a...@samba.org;>Alexander Bokovoy(https://www.redhat.com/;>Red Hat)
-mailto:i...@samba.org;>Ira Cooper(https://www.redhat.com/;>Red Hat)
+Ira Cooper
 https://www.samba.org/~sdanneman/;>Steven Danneman
 https://www.samba.org/~gd;>Gnther Deschner(https://www.redhat.com/;>Red Hat)
 mailto:dd...@samba.org;>David Disseldorp(https://www.suse.com/;>SUSE)


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2017-07-22 Thread Björn Jacke
The branch, master has been updated
   via  7fb1854 more download site fixes
  from  05df203 updates on the download site

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 7fb18542e0f3877c0f332c106a6946f9a36f13ec
Author: Björn Jacke 
Date:   Sat Jul 22 22:55:45 2017 +0200

more download site fixes

---

Summary of changes:
 download/index.html | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)


Changeset truncated at 500 lines:

diff --git a/download/index.html b/download/index.html
index abf26e2..cf74742 100755
--- a/download/index.html
+++ b/download/index.html
@@ -97,8 +97,7 @@ forwarder
 http://www.qnx.com/;>QNX (Samba Server/Client)
 http://www.networking.ibm.com/trl/trlclnt.html;>IBM LAN
 Client 2.x
-http://www.obdev.at/Products/Sharity.html;>Sharity
-http://www.handshigh.com/html/wifile.html;>WiFile
+https://www.obdev.at/products/sharity;>Sharity
   
 
   
@@ -126,12 +125,13 @@ Client 2.x
   
   
   
-http://www.apple.com/macosx/;>Mac OS X also ships 
with 
-a native CIFS client.
+https://www.apple.com/macosx/;>Mac OS X also ships 
with 
+a native CIFS client. Since OS X 10.9 Apple moved away from AFP to SMB 
as
+   standard file sharing protocol.
   
 
   
-Several flavors of BSDhttp://www.freebsd.org/;>FreeBSD, http://www.netbsd.org/;>NetBSD, http://www.dragonflybsd.org;>DragonFly BSDship with smbfs 
support.
+Several flavors of BSDhttps://www.freebsd.org/;>FreeBSD, https://www.netbsd.org/;>NetBSD, https://www.dragonflybsd.org;>DragonFly BSDship with smbfs 
support.

 
 


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2017-07-22 Thread Björn Jacke
The branch, master has been updated
   via  05df203 updates on the download site
  from  866dd96 NEWS[4.7.0rc2]: Samba 4.7.0rc2 Security Release Available 
for Download

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 05df203f7aad2c7131c2142de7e3cedbbfceeb04
Author: Björn Jacke 
Date:   Sat Jul 22 22:39:31 2017 +0200

updates on the download site

all the linked Ports are dead, remove them all. Also some internal links 
changed some.

---

Summary of changes:
 download/index.html | 48 ++--
 1 file changed, 10 insertions(+), 38 deletions(-)


Changeset truncated at 500 lines:

diff --git a/download/index.html b/download/index.html
index de48957..abf26e2 100755
--- a/download/index.html
+++ b/download/index.html
@@ -4,12 +4,12 @@
 Download
 
 The Samba source code is distributed via https.  View the download
-area via HTTPS.  The file you probably want
-is called samba-latest.tar.gz.
-Old releases are available in the Samba 
archives.
+area https://download.samba.org/pub/samba/;>via HTTPS.  The file 
you probably want
+is called https://download.samba.org/pub/samba/samba-latest.tar.gz;>samba-latest.tar.gz.
+Old releases are available in the https://download.samba.org/pub/samba/old-versions/;>Samba 
archives.
 
 
-The Samba distribution GPG public 
key
+The https://download.samba.org/pub/samba/samba-pubkey.asc;>Samba 
distribution GPG public key
 can be used to verify that current releases have not been tampered with.  Using
 GnuPG, simply download the Samba source distribution, the tarball signature,
 and the Samba distribution public key.  Then run
@@ -36,9 +36,9 @@ gpg: Good signature from Samba Distribution Verification 
Key \
   
 
   Binaries
-  All major Linux and Free Unix distributions have Samba as a native
+  All major Linux and Free Unix distributions have Samba as a native
   package.  See your distributor's package or port system for a
-  native install of samba on your system.
+  native install of samba on your system.
 
   https://samba.plus/;>https://samba.plus/
   offers Samba packages for SLES, RHEL, and Debian.
@@ -50,11 +50,11 @@ gpg: Good signature from Samba Distribution 
Verification Key \
 
 
Git Sources You can also fetch the
-  sources using the http://git-scm.org;>GIT source
+  sources using the https://git-scm.org;>GIT source
   code control system.  The advantage of fetching via GIT
   is can update your sources at any time using a single
   command.  See
-  the http://wiki.samba.org/index.php/Using_Git_for_Samba_Development;>Git
+  the https://wiki.samba.org/index.php/Using_Git_for_Samba_Development;>Git
   instructions.
 
   
@@ -66,7 +66,7 @@ gpg: Good signature from Samba Distribution Verification 
Key \
  
   
Samba GUI managers
-   http://www.wireshark.org/;>Wireshark (formally known 
as Ethereal) (decodes NetBIOS,
+   https://www.wireshark.org/;>Wireshark (decodes 
NetBIOS,
 SMB/CIFS,  MS-RPC)
http://www.tcpdump.org/;>tcpdump (command line
 packet sniffer)
@@ -80,41 +80,13 @@ forwarder
 
   
 
-
-
-
-  Ports
-  
-
-  
-
-  http://www.pi-net.dyndns.org/anonymous/jyc/;>VMS
-  ftp://ftp.mks.com/pub/s390/gnu/;>MVS
-
- ftp://ftp.stratus.com/pub/vos/samba/samba.html;>Stratus-VOS
-
-  
-  
-  
-  
-
-  http://www.birrabrothers.com/tiger/data/samba/;>Amiga
-
-  
-
-  
-
   
   SMB/CIFS Clients
   
 
   
Linux CIFS VFS
-http://www.thursby.com/;>Dave (Macintosh)
+http://www.thursby.com/products/dave;>Dave 
(Macintosh)
 http://www.tarantella.com/products/vision/family/#vfs;>VisionFS
   
 


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2017-06-22 Thread Björn Jacke
The branch, master has been updated
   via  b78a222 remove dead contact links from the hong kong support site
  from  6eff1dc make some http -> https

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit b78a222e49a8f66245a9739c358fd77f3786546d
Author: Björn Jacke 
Date:   Thu Jun 22 15:29:56 2017 +0200

remove dead contact links from the hong kong support site

---

Summary of changes:
 support/hongkong.html | 103 +-
 1 file changed, 1 insertion(+), 102 deletions(-)


Changeset truncated at 500 lines:

diff --git a/support/hongkong.html b/support/hongkong.html
index 051038e..c8efd94 100644
--- a/support/hongkong.html
+++ b/support/hongkong.html
@@ -5,109 +5,8 @@
 Commercial Support - Hong Kong/China
 
 
+We are not aware of companies that offer professional Samba Support in Hong 
Kong but you might get Samba support from one of the companies from the Global Support section.
 
 
-
-The Crown Commercial House
-
-RM1112 Beverley Commercial Centre,
-87-105 Chatham Road, T.S.T.,
-Kowloon,
-Hong Kong.
-
-Contact Person : Vikash Khatuwala
-
-Tel : +852 27235654
-Fax : +852 23690786
-Email : mailto:vika...@iname.com;>vika...@iname.com
-
-Server : Solaris, Redhat, SuSE Linux
-Clients : Windows 95/98/NT, Windows for Workgroups 3.11 and OS/2
-
-We have experience in setup and troubleshooting samba. Quick On-site 
-service is provided.
-
-
-
-
-
-Kavayon Consultants Company
-
-Unit 702, 65-71 Yen Chow St.,
-Sham Shui Po, Kowloon, H.K.
-  
-Tel: +852 3576-3856
-Email: sa...@kavayon.com
-   
-Contact Person: Jacky C.K Tsoi
-
-Samba Experience:
-We have experience in Samba for more than 6 years and have experience 
-in setting up NT-domain environment using Samba-3/LDAP with 1300+ 
-users and 15+ servers.
-
-
-
-
-
-SOK Holdings Co., Ltd.
-
-Room C2, 3rd Floor, Tai Chi Factory Building,
-27 Kok Cheung Street, Tai Kok Tsui, Kowloon,
-Hong Kong/China
-
-Web: http://www.sok-holdings.com;>http://www.sok-holdings.com
-Tel: +852 2395 6577
-Email: mailto:i...@sok-holdings.com;>i...@sok-holdings.com,mailto:supp...@sok-holdings.com;>supp...@sok-holdings.com
-
-
-We provide services as follows.
-A) SAMBA information translation into Asian Languages,
-B) Multi-sites SAMBA Integration to secure/centralize Internal information,
-C) Virtualization Setup/Maintenance Support with SAMBA,
-D) Official License Cost reduction Support by Windows with Linux 
environment,
-and E) 24x7x365 Realtime Remote Support.
-
-弊社では、下記サービスをご提供いたします。
-
-A) SAMBA関連情報のアジア各国言語への翻訳,
-
-B) 安全で統合された社内情報管
-
-理のための複数拠点へのSAMBA導入,
-
-C) SAMBAを使った仮想化の設定/メンテナンスサポート,
-
-D) 
WindowsとLinuxの並存環境の構築による正規ライセンスコストの削減サポート,
-
-E) 24x7x365のリアルタイムリモートサポート
-
-Specialty samba capabilities: Simple/Complex SAMBA servers and networks for 
enterprises.
-
-
-
-
-WebForce Network Technology Ltd.
-
-16/F, Cheung kong Center, 
-2 Queen's Road, Central, Hong Kong.
-  
-Tel: +852 2788 0836
-Fax : +852 8101 2202
-Email: mailto:webi...@webforce.com.hk;>webi...@webforce.com.hk
-URL: http://www.webforce.com.hk;>http://www.webforce.com.hk
-   
-Contact Person: Jerry Sham, 
-LPIC-2, MCSE, MCDBA
-Project Manager
-
-Samba Experience:
-WebForce is a Linux service company founded in 1996 in Hong Kong. We
-provide configuration and support services for Samba in setting up
-departmental file and print server, NT-domain (PDC and BDC) environment,
-with ACL and real time virus blocking function. 
-
-
-
 
 


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2017-06-20 Thread Björn Jacke
The branch, master has been updated
   via  6eff1dc make some http -> https
  from  6be01f9 irc.html: Fix typo then -> than.

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 6eff1dc422ac6b1bf9403bc8c6dae4cc1f363a0a
Author: Björn Jacke 
Date:   Tue Jun 20 22:54:44 2017 +0200

make some http -> https

---

Summary of changes:
 box_beyond_samba.html | 8 
 index.html| 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)


Changeset truncated at 500 lines:

diff --git a/box_beyond_samba.html b/box_beyond_samba.html
index d8bfffa..c5b8df2 100644
--- a/box_beyond_samba.html
+++ b/box_beyond_samba.html
@@ -8,12 +8,12 @@
 
 Conferences
 
-http://www.sambaxp.org; target="_blank">sambaXP
+https://www.sambaxp.org; target="_blank">sambaXP
 by
-http://www.sernet.de/en/; target="_blank">SerNet
+https://www.sernet.de/en/; target="_blank">SerNet
 
-http://www.snia.org/events/storage-developer; target="_blank">SDC
+https://www.snia.org/events/storage-developer; target="_blank">SDC
 by
-http://www.snia.org; target="_blank">SNIA
+https://www.snia.org; target="_blank">SNIA
 
 
diff --git a/index.html b/index.html
index 004ccc8..be6752a 100644
--- a/index.html
+++ b/index.html
@@ -90,7 +90,7 @@
Related 
Sites
 

-   http://cwrap.org/;>cwrap.org
+   https://cwrap.org/;>cwrap.org
linux-cifs.samba.org
talloc.samba.org
tevent.samba.org


-- 
Samba Website Repository



[SCM] Samba Shared Repository - branch master updated

2017-06-13 Thread Björn Jacke
The branch, master has been updated
   via  67095c7 libbreplace: compatibility fix for AIX
  from  60a8ba4 password_hash: Fix the build on FreeBSD

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 67095c76f64c61a5472c0233e44520ccc4eddbc8
Author: Guillaume Xavier Taillon <gtail...@ca.ibm.com>
Date:   Mon Feb 22 14:46:24 2016 -0500

libbreplace: compatibility fix for AIX

Adds macros for preprocessor compares and replaces an incomptatible
  compare with one of the new macros.
This fixes a comptability bug on AIX.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=11621
Signed-off-by: Guillaume Xavier Taillon <gtail...@ca.ibm.com>
Reviewed-by: Björn Jacke <bja...@samba.org>
Reviewed-by: Stefan Metzmacher <me...@samba.org>

Autobuild-User(master): Björn Jacke <b...@sernet.de>
Autobuild-Date(master): Tue Jun 13 09:11:56 CEST 2017 on sn-devel-144

---

Summary of changes:
 lib/replace/system/time.h | 10 +-
 lib/util/time.c   |  2 +-
 2 files changed, 10 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/lib/replace/system/time.h b/lib/replace/system/time.h
index b6d2609..00f0d7f 100644
--- a/lib/replace/system/time.h
+++ b/lib/replace/system/time.h
@@ -79,13 +79,21 @@ int rep_utimes(const char *filename, const struct timeval 
tv[2]);
 typedef int clockid_t;
 int rep_clock_gettime(clockid_t clk_id, struct timespec *tp);
 #endif
-/* make sure we have a best effort CUSTOM_CLOCK_MONOTONIC we can rely on */
+/* make sure we have a best effort CUSTOM_CLOCK_MONOTONIC we can rely on.
+ *
+ * on AIX the values of CLOCK_* are cast expressions, not integer constants,
+ * this prevents them from being compared against in a preprocessor directive.
+ * The following ...IS_* macros can be used to check which clock is in use.
+ */
 #if defined(CLOCK_MONOTONIC)
 #define CUSTOM_CLOCK_MONOTONIC CLOCK_MONOTONIC
+#define CUSTOM_CLOCK_MONOTONIC_IS_MONOTONIC
 #elif defined(CLOCK_HIGHRES)
 #define CUSTOM_CLOCK_MONOTONIC CLOCK_HIGHRES
+#define CUSTOM_CLOCK_MONOTONIC_IS_HIGHRES
 #else
 #define CUSTOM_CLOCK_MONOTONIC CLOCK_REALTIME
+#define CUSTOM_CLOCK_MONOTONIC_IS_REALTIME
 #endif
 
 #endif
diff --git a/lib/util/time.c b/lib/util/time.c
index 8c01627..8a4d93d 100644
--- a/lib/util/time.c
+++ b/lib/util/time.c
@@ -60,7 +60,7 @@ _PUBLIC_ void clock_gettime_mono(struct timespec *tp)
}
 #endif
 /* then try the  monotonic clock: */
-#if CUSTOM_CLOCK_MONOTONIC != CLOCK_REALTIME
+#ifndef CUSTOM_CLOCK_MONOTONIC_IS_REALTIME
if (clock_gettime(CUSTOM_CLOCK_MONOTONIC,tp) == 0) {
return;
}


-- 
Samba Shared Repository



[SCM] Samba Website Repository - branch master updated

2017-03-21 Thread Björn Jacke
The branch, master has been updated
   via  68ec05c update archives site
  from  abb71f5 Add Samba 4.4.11 to the list.

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 68ec05cbe9f8e5e9e61d21c0c096f29614bf3983
Author: Björn Jacke 
Date:   Wed Mar 22 00:19:34 2017 +0100

update archives site

---

Summary of changes:
 archives.html | 35 +--
 1 file changed, 9 insertions(+), 26 deletions(-)


Changeset truncated at 500 lines:

diff --git a/archives.html b/archives.html
index a00325a..3e980aa 100755
--- a/archives.html
+++ b/archives.html
@@ -24,41 +24,33 @@
   NameDescription
 
 
-   https://lists.samba.org/pipermail/samba/;>samba
-The Samba SMB fileserver
+   https://lists.samba.org/archive/samba/;>samba
+   The Samba SMB fileserver
 
 
-  https://lists.samba.org/pipermail/samba-announce/;>samba-announce
+  https://lists.samba.org/archive/samba-announce/;>samba-announce
   Samba Announcements
 
 
-  https://lists.samba.org/pipermail/samba-vms/;>samba-vms
+  https://lists.samba.org/archive/samba-vms/;>samba-vms
   Samba for the VMS operating system
 
 
-  https://lists.samba.org/pipermail/samba-cvs/;>samba-cvs
+  https://lists.samba.org/archive/samba-cvs/;>samba-cvs
   Samba CVS, Subversion and Git commit messages
 
 
-  https://lists.samba.org/pipermail/samba-docs/;>samba-docs
+  https://lists.samba.org/archive/samba-docs/;>samba-docs
   Discontinued list about Samba documentation
 
 
-  https://lists.samba.org/pipermail/samba-binaries/;>samba-binaries
-  Discontinued Developer discussions about Samba binary 
distributions
-
-
-  https://lists.samba.org/pipermail/samba-technical/;>samba-technical
+  https://lists.samba.org/archive/samba-technical/;>samba-technical
   Developer discussions about Samba internals
 
 
-  https://lists.samba.org/pipermail/samba-ntdom/;>samba-ntdom
+  https://lists.samba.org/archive/samba-ntdom/;>samba-ntdom
   Discontinued list about NT Domain support
 
-
-  https://lists.samba.org/pipermail/mirrors/;>mirrors
-  for sites mirroring samba.org
-
 
 
 A mailing list in the French language is also available.  See https://groupes.renater.fr/sympa/info/samba-fr;>https://groupes.renater.fr
 
 Important: Currently the Samba mailing list archives hosted 
here on samba.org do not support searching.
 
-However, you can access a searchable copy of the archives at http://marc.info/;>http://marc.info/, http://groups.google.com/;>groups.google.com, and http://mail-archive.com/;>mail-archive.com.
+However, you can access a searchable copy of the archives at https://marc.info/;>http://marc.info/ and https://mail-archive.com/;>mail-archive.com.
 
 
 
@@ -81,13 +73,4 @@ 
href="https://groupes.renater.fr/sympa/info/samba-fr;>https://groupes.renater.fr
 We strongly recommend this for people using webmail services such as Yahoo! 
and HotMail; a few days traffic on the samba lists can be enough to completely 
fill a free mailbox, causing you to lose other messages.  In fact, new 
subscriptions from these domains are no longer accepted on the high-volume 
lists.
 
 
-
-NNTP Interface
-
-The Samba mailing lists are available as NNTP newsgroups.  Reading over 
NNTP allows you to fully participate in discussions, without needing to receive 
every message to your machine.
-
-You can read News using Outlook or Free Agent on Windows, or http://pan.rebelbase.com/;>Pan, tin, or GNUS on Unix.
-
-Connect to news://news.gmane.org/;>news://news.gmane.org/ to 
read http://news.gmane.org/?match=samba;>Samba newsgroups.
-
 


-- 
Samba Website Repository



[SCM] Samba Shared Repository - branch master updated

2017-01-21 Thread Björn Jacke
The branch, master has been updated
   via  5059c8e vfs_default: unlock the right file in copy chunk
   via  a5c2396 replace: fix some trailing whitespaces
   via  fe149d7 vfs_fruit: fix a typo
  from  35460d9 s3/rpc_server/mdssvc: prefix public flex and bison global 
symbols

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 5059c8e2e3a6159bc2917ddd80d09fab35b39e66
Author: Björn Jacke <b...@sernet.de>
Date:   Thu Jan 19 21:51:41 2017 +0100

vfs_default: unlock the right file in copy chunk

Signed-off-by: Bjoern Jacke <b...@sernet.de>
Reviewed-by: David Disseldorp <dd...@samba.org>

Autobuild-User(master): Björn Jacke <b...@sernet.de>
Autobuild-Date(master): Sat Jan 21 17:00:54 CET 2017 on sn-devel-144

commit a5c2396173aabb7ba1c44481a944f2238bc962f9
Author: Björn Jacke <b...@sernet.de>
Date:   Thu Dec 8 18:54:33 2016 +0100

replace: fix some trailing whitespaces

Signed-off-by: Bjoern Jacke <b...@sernet.de>
Reviewed-by: David Disseldorp <dd...@samba.org>

commit fe149d7b0197e26c53cdbeca67b2d878f831ea9d
Author: Björn Jacke <b...@sernet.de>
Date:   Thu Jan 19 23:49:54 2017 +0100

vfs_fruit: fix a typo

Signed-off-by: Bjoern Jacke <b...@sernet.de>
Reviewed-by: David Disseldorp <dd...@samba.org>

---

Summary of changes:
 lib/replace/getifaddrs.c  | 20 ++--
 source3/modules/vfs_default.c |  2 +-
 source3/modules/vfs_fruit.c   |  2 +-
 3 files changed, 12 insertions(+), 12 deletions(-)


Changeset truncated at 500 lines:

diff --git a/lib/replace/getifaddrs.c b/lib/replace/getifaddrs.c
index c2d20f8..9e377e5 100644
--- a/lib/replace/getifaddrs.c
+++ b/lib/replace/getifaddrs.c
@@ -1,4 +1,4 @@
-/* 
+/*
Unix SMB/CIFS implementation.
Samba utility functions
Copyright (C) Andrew Tridgell 1998
@@ -94,17 +94,17 @@ int rep_getifaddrs(struct ifaddrs **ifap)
if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) == -1) {
return -1;
}
-  
+
ifc.ifc_len = sizeof(buff);
ifc.ifc_buf = buff;
 
if (ioctl(fd, SIOCGIFCONF, ) != 0) {
close(fd);
return -1;
-   } 
+   }
 
ifr = ifc.ifc_req;
-  
+
n = ifc.ifc_len / sizeof(struct ifreq);
 
/* Loop through interfaces, looking for given IP address */
@@ -171,7 +171,7 @@ int rep_getifaddrs(struct ifaddrs **ifap)
close(fd);
 
return 0;
-}  
+}
 
 #define _FOUND_IFACE_ANY
 #endif /* HAVE_IFACE_IFCONF */
@@ -200,14 +200,14 @@ int rep_getifaddrs(struct ifaddrs **ifap)
if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) == -1) {
return -1;
}
-  
+
strioctl.ic_cmd = SIOCGIFCONF;
strioctl.ic_dp  = buff;
strioctl.ic_len = sizeof(buff);
if (ioctl(fd, I_STR, ) < 0) {
close(fd);
return -1;
-   } 
+   }
 
/* we can ignore the possible sizeof(int) here as the resulting
   number of interface structures won't change */
@@ -217,16 +217,16 @@ int rep_getifaddrs(struct ifaddrs **ifap)
at the start of the buffer if the offered size is a
multiple of the structure size plus an int */
if (n*sizeof(struct ifreq) + sizeof(int) == strioctl.ic_len) {
-   ifr = (struct ifreq *)(buff + sizeof(int));  
+   ifr = (struct ifreq *)(buff + sizeof(int));
} else {
-   ifr = (struct ifreq *)buff;  
+   ifr = (struct ifreq *)buff;
}
 
/* Loop through interfaces */
 
for (i = 0; i<n; i++) {
ifreq = ifr[i];
-  
+
curif = calloc(1, sizeof(struct ifaddrs));
if (lastif == NULL) {
*ifap = curif;
diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c
index 4e8605b..d4610f7 100644
--- a/source3/modules/vfs_default.c
+++ b/source3/modules/vfs_default.c
@@ -1710,7 +1710,7 @@ static struct tevent_req *vfswrap_copy_chunk_send(struct 
vfs_handle_struct *hand
saved_errno = errno;
}
 
-   SMB_VFS_STRICT_UNLOCK(src_fsp->conn, src_fsp, );
+   SMB_VFS_STRICT_UNLOCK(dest_fsp->conn, dest_fsp, );
 
if (ret == -1) {
errno = saved_errno;
diff --git a/source3/modules/vfs_fruit.c b/source3/modules/vfs_fruit.c
index 605b3e0..9e8a78c 100644
--- a/source3/modules/vfs_fruit.c
+++ b/source3/modules/vfs_fruit.c
@@ -3807,7 +3807,7 @@ static void fruit_copy_chunk_done(struct tevent_req 
*subreq)
}
 
/*
-* Now copy all reamining streams. We know the share supports
+* Now copy all remaining streams. We know the share supports
 * streams, because we're

[SCM] Samba Shared Repository - branch master updated

2017-01-06 Thread Björn Jacke
The branch, master has been updated
   via  3d1cdb7 WHATSNEW: fix typo
  from  c586c3d libgpo: allow empty values in gp inifile parsing code.

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 3d1cdb70fd45b36c0fa39ec7527fbb44855ed8dd
Author: Björn Jacke <b...@sernet.de>
Date:   Fri Jan 6 23:26:13 2017 +0100

WHATSNEW: fix typo

Autobuild-User(master): Björn Jacke <b...@sernet.de>
Autobuild-Date(master): Sat Jan  7 03:19:03 CET 2017 on sn-devel-144

---

Summary of changes:
 WHATSNEW.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/WHATSNEW.txt b/WHATSNEW.txt
index 7795523..a521813 100644
--- a/WHATSNEW.txt
+++ b/WHATSNEW.txt
@@ -101,7 +101,7 @@ new options for controlling TCP ports used for RPC services
 ---
 
 The new 'rpc server port' option controls the default port used for
-RPC services other than Netlogon.  The Netlogon server honours instead
+RPC services other than Netlogon.  The Netlogon server honors instead
 the 'rpc server port:netlogon' option.  The default value for both
 these options is the first available port including or after 1024.
 


-- 
Samba Shared Repository



[SCM] Samba Shared Repository - branch master updated

2016-12-16 Thread Björn Jacke
The branch, master has been updated
   via  e7ab2ad pam_winbind: Fix compiler warnings
  from  cd20ced ctdb-tools: Don't trust non-hosting nodes in "ctdb ip all"

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit e7ab2ad887f4e5ef54afa14492541b6b3b2b1d8b
Author: Björn Jacke <b...@sernet.de>
Date:   Fri Dec 16 11:16:56 2016 +0100

pam_winbind: Fix compiler warnings

Thanks to Stef Walter <st...@gnome.org>

BUG: http://bugzilla.samba.org/show_bug.cgi?id=

Signed-off-by: Bjoern Jacke <b...@sernet.de>
Reviewed-by: Stefan Metzmacher <me...@samba.org>

Autobuild-User(master): Björn Jacke <b...@sernet.de>
Autobuild-Date(master): Fri Dec 16 16:22:32 CET 2016 on sn-devel-144

---

Summary of changes:
 nsswitch/pam_winbind.c | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)


Changeset truncated at 500 lines:

diff --git a/nsswitch/pam_winbind.c b/nsswitch/pam_winbind.c
index 40f4f7a..b78c6bd 100644
--- a/nsswitch/pam_winbind.c
+++ b/nsswitch/pam_winbind.c
@@ -667,7 +667,7 @@ static const char *_get_ntstatus_error_string(const char 
*nt_status_string)
 
 static int converse(const pam_handle_t *pamh,
int nargs,
-   struct pam_message **message,
+   const struct pam_message **message,
struct pam_response **response)
 {
int retval;
@@ -690,7 +690,8 @@ static int _make_remark(struct pwb_context *ctx,
 {
int retval = PAM_SUCCESS;
 
-   struct pam_message *pmsg[1], msg[1];
+   const struct pam_message *pmsg[1];
+   struct pam_message msg[1];
struct pam_response *resp;
 
if (ctx->flags & WINBIND_SILENT) {
@@ -843,7 +844,8 @@ static int wbc_auth_error_to_pam_error(struct pwb_context 
*ctx,
 #if defined(HAVE_PAM_RADIO_TYPE)
 static bool _pam_winbind_change_pwd(struct pwb_context *ctx)
 {
-   struct pam_message msg, *pmsg;
+   struct pam_message msg;
+   const struct pam_message *pmsg;
struct pam_response *resp = NULL;
int ret;
bool retval = false;
@@ -2194,7 +2196,8 @@ static int _winbind_read_password(struct pwb_context *ctx,
 */
 
{
-   struct pam_message msg[3], *pmsg[3];
+   struct pam_message msg[3];
+   const struct pam_message *pmsg[3];
struct pam_response *resp;
int i, replies;
 


-- 
Samba Shared Repository



[SCM] Samba Shared Repository - branch master updated

2016-12-13 Thread Björn Jacke
The branch, master has been updated
   via  01c8631 pam: strip trailing whitespaces in pam_winbind.c
   via  69f1008 pam: map more NT password errors to PAM errors
  from  dcd4fed talloc: Add tests for talloc destructor behaviour after 
talloc_realloc()

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 01c8631df5ec998f6eaab09af300842412c33da4
Author: Björn Jacke <b...@sernet.de>
Date:   Tue Dec 13 09:00:58 2016 +0100

pam: strip trailing whitespaces in pam_winbind.c

Signed-off-by: Bjoern Jacke <b...@sernet.de>
Reviewed-by: Karolin Seeger <k...@sernet.de>

Autobuild-User(master): Björn Jacke <b...@sernet.de>
Autobuild-Date(master): Tue Dec 13 18:01:21 CET 2016 on sn-devel-144

commit 69f10080c3765a9b139fbad7f3dc633066fdded2
Author: Björn Jacke <b...@sernet.de>
Date:   Wed Nov 25 14:04:24 2015 +0100

pam: map more NT password errors to PAM errors

NT_STATUS_ACCOUNT_DISABLED,
NT_STATUS_PASSWORD_RESTRICTION,
NT_STATUS_PWD_HISTORY_CONFLICT,
NT_STATUS_PWD_TOO_RECENT,
NT_STATUS_PWD_TOO_SHORT

now map to PAM_AUTHTOK_ERR (Authentication token manipulation error), which 
is
the closest match.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=2210

Signed-off-by: Bjoern Jacke <b...@sernet.de>
Reviewed by: Jeremy Allison <j...@samba.org>

---

Summary of changes:
 libcli/auth/pam_errors.c |  6 +-
 nsswitch/pam_winbind.c   | 15 ++-
 2 files changed, 15 insertions(+), 6 deletions(-)


Changeset truncated at 500 lines:

diff --git a/libcli/auth/pam_errors.c b/libcli/auth/pam_errors.c
index 978f8ff..5592d39 100644
--- a/libcli/auth/pam_errors.c
+++ b/libcli/auth/pam_errors.c
@@ -71,11 +71,15 @@ static const struct {
{NT_STATUS_WRONG_PASSWORD, PAM_AUTH_ERR},
{NT_STATUS_LOGON_FAILURE, PAM_AUTH_ERR},
{NT_STATUS_ACCOUNT_EXPIRED, PAM_ACCT_EXPIRED},
+   {NT_STATUS_ACCOUNT_DISABLED, PAM_ACCT_EXPIRED},
{NT_STATUS_PASSWORD_EXPIRED, PAM_AUTHTOK_EXPIRED},
{NT_STATUS_PASSWORD_MUST_CHANGE, PAM_NEW_AUTHTOK_REQD},
{NT_STATUS_ACCOUNT_LOCKED_OUT, PAM_MAXTRIES},
{NT_STATUS_NO_MEMORY, PAM_BUF_ERR},
-   {NT_STATUS_PASSWORD_RESTRICTION, PAM_PERM_DENIED},
+   {NT_STATUS_PASSWORD_RESTRICTION, PAM_AUTHTOK_ERR},
+   {NT_STATUS_PWD_HISTORY_CONFLICT, PAM_AUTHTOK_ERR},
+   {NT_STATUS_PWD_TOO_RECENT, PAM_AUTHTOK_ERR},
+   {NT_STATUS_PWD_TOO_SHORT, PAM_AUTHTOK_ERR},
{NT_STATUS_BACKUP_CONTROLLER, PAM_AUTHINFO_UNAVAIL},
{NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND, PAM_AUTHINFO_UNAVAIL},
{NT_STATUS_NO_LOGON_SERVERS, PAM_AUTHINFO_UNAVAIL},
diff --git a/nsswitch/pam_winbind.c b/nsswitch/pam_winbind.c
index 42c4f8e..40f4f7a 100644
--- a/nsswitch/pam_winbind.c
+++ b/nsswitch/pam_winbind.c
@@ -12,7 +12,7 @@
 
 #include "pam_winbind.h"
 
-enum pam_winbind_request_type 
+enum pam_winbind_request_type
 {
PAM_WINBIND_AUTHENTICATE,
PAM_WINBIND_SETCRED,
@@ -490,12 +490,12 @@ config_from_pam:
else if (!strcasecmp(*v, "unknown_ok"))
ctrl |= WINBIND_UNKNOWN_OK_ARG;
else if ((type == PAM_WINBIND_AUTHENTICATE
- || type == PAM_WINBIND_SETCRED) 
+ || type == PAM_WINBIND_SETCRED)
 && !strncasecmp(*v, "require_membership_of",
 strlen("require_membership_of")))
ctrl |= WINBIND_REQUIRED_MEMBERSHIP;
-   else if ((type == PAM_WINBIND_AUTHENTICATE 
- || type == PAM_WINBIND_SETCRED) 
+   else if ((type == PAM_WINBIND_AUTHENTICATE
+ || type == PAM_WINBIND_SETCRED)
 && !strncasecmp(*v, "require-membership-of",
 strlen("require-membership-of")))
ctrl |= WINBIND_REQUIRED_MEMBERSHIP;
@@ -775,6 +775,11 @@ static int pam_winbind_request_log(struct pwb_context *ctx,
return PAM_IGNORE;
}
return retval;
+   case PAM_AUTHTOK_ERR:
+   /* Authentication token manipulation error */
+   _pam_log(ctx, LOG_WARNING, "user `%s' authentication token 
change failed "
+   "(pwd complexity/history/min_age not met?)", user);
+   return retval;
case PAM_SUCCESS:
/* Otherwise, the authentication looked good */
if (strcmp(fn, "wbcLogonUser") == 0) {
@@ -2497,7 +2502,7 @@ static char* winbind_upn_to_username(struct pwb_context 
*ctx,
 }
 
 static int _pam_delete_cred(

[SCM] Samba Shared Repository - branch master updated

2016-12-09 Thread Björn Jacke
The branch, master has been updated
   via  44a01a2 util: use SCOPE_DELIMITER for the IPv6 scope delimiter
   via  bfc6adf replace: make sure we have a SCOPE_DELIMITER define
  from  ab8616f ad/provision: change http://samba.org to 
https://www.samba.org

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 44a01a2d3d15923e14516d5a9ffd195e6fe41e8b
Author: Björn Jacke <b...@sernet.de>
Date:   Thu Dec 8 17:53:43 2016 +0100

util: use SCOPE_DELIMITER for the IPv6 scope delimiter

Signed-off-by: Bjoern Jacke <b...@sernet.de>
Reviewed-by: Stefan Metzmacher <me...@samba.org>

Autobuild-User(master): Björn Jacke <b...@sernet.de>
Autobuild-Date(master): Fri Dec  9 20:45:15 CET 2016 on sn-devel-144

commit bfc6adfb20d208e994f1b203237dca320b9901d4
Author: Björn Jacke <b...@sernet.de>
Date:   Thu Dec 8 17:56:24 2016 +0100

replace: make sure we have a SCOPE_DELIMITER define

Signed-off-by: Bjoern Jacke <b...@sernet.de>
Reviewed-by: Stefan Metzmacher <me...@samba.org>

---

Summary of changes:
 lib/replace/system/network.h | 4 
 lib/util/util_net.c  | 8 
 2 files changed, 8 insertions(+), 4 deletions(-)


Changeset truncated at 500 lines:

diff --git a/lib/replace/system/network.h b/lib/replace/system/network.h
index 4a3fd07..8254551 100644
--- a/lib/replace/system/network.h
+++ b/lib/replace/system/network.h
@@ -365,4 +365,8 @@ struct addrinfo {
 #endif /* HAVE_LINUX_IPV6_V6ONLY_26 */
 #endif /* HAVE_IPV6 */
 
+#ifndef SCOPE_DELIMITER
+#define SCOPE_DELIMITER '%'
+#endif
+
 #endif
diff --git a/lib/util/util_net.c b/lib/util/util_net.c
index cb238ad..cbc836c 100644
--- a/lib/util/util_net.c
+++ b/lib/util/util_net.c
@@ -86,7 +86,7 @@ static char *normalize_ipv6_literal(const char *str, char 
*buf, size_t *_len)
cnt_delimiter += 1;
break;
case 's':
-   buf[i] = '%';
+   buf[i] = SCOPE_DELIMITER;
idx_chars += 1;
break;
case '0':
@@ -131,7 +131,7 @@ static char *normalize_ipv6_literal(const char *str, char 
*buf, size_t *_len)
 
for (; idx_chars != 0 && i < len; i++) {
switch (str[i]) {
-   case '%':
+   case SCOPE_DELIMITER:
case ':':
return NULL;
default:
@@ -185,7 +185,7 @@ bool interpret_string_addr_internal(struct addrinfo **ppres,
}
 
if (strchr_m(str, ':')) {
-   char *p = strchr_m(str, '%');
+   char *p = strchr_m(str, SCOPE_DELIMITER);
 
/*
 * Cope with link-local.
@@ -502,7 +502,7 @@ bool is_ipaddress_v6(const char *str)
unsigned int idx = 0;
struct in6_addr ip6;
 
-   p = strchr_m(str, '%');
+   p = strchr_m(str, SCOPE_DELIMITER);
if (p && (p > str)) {
len = PTR_DIFF(p, str);
idxs = p + 1;


-- 
Samba Shared Repository



[SCM] Samba Website Repository - branch master updated

2016-09-12 Thread Björn Jacke
The branch, master has been updated
   via  098d764 ble turkish support site
  from  7988dba extend turkish suport site

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 098d76456be5f7e32720285a98e4b184e8e3f038
Author: Björn Jacke 
Date:   Mon Sep 12 23:54:48 2016 +0200

ble turkish support site

---

Summary of changes:
 support/countries.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/support/countries.html b/support/countries.html
index e24bcf2..64254a0 100644
--- a/support/countries.html
+++ b/support/countries.html
@@ -42,7 +42,7 @@
  Spain
  Sweden
  Switzerland
-
+ Turkey
  United Kingdom
  United States
  Venezuela


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2016-09-12 Thread Björn Jacke
The branch, master has been updated
   via  7988dba extend turkish suport site
  from  3d12b42 NEWS[4.5.0]: Samba 4.5.0 Available for Download

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 7988dba570b22621f86f1effa45650d9513630f4
Author: Björn Jacke 
Date:   Mon Sep 12 18:21:38 2016 +0200

extend turkish suport site

---

Summary of changes:
 support/turkey.html | 21 ++---
 1 file changed, 18 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/support/turkey.html b/support/turkey.html
index 48d8487..72a7ce7 100644
--- a/support/turkey.html
+++ b/support/turkey.html
@@ -6,10 +6,11 @@
 
 
 
+Company : Fisek Enstitusu Bilisim Hizmetleri
 
-Company : Fisek Enstitusu Bilisim Hizmetleri
-Telephone : 90-312-3857026 (Ankara) / 90-216-4284693 (Istanbul)
-Internet : http://www.fisek.com.tr;>http://www.fisek.com.tr
+Tel: +90-312-3857026 (Ankara) / 90-216-4284693 (Istanbul)
+Web : http://www.fisek.com.tr;>http://www.fisek.com.tr
+
 Additional Info:
 
 Fisek, Ankara ve Istanbul merkezli olmak uzere tum Turkiye'de Linux
@@ -19,5 +20,19 @@ Samba'nin da, tum Linux projelerinin oldugu gibi ticari 
destegini
 4vermektedir.
 
 
+
+
+Profelis IT Consultancy
+
+Tel: +90 212 212 80 21
+Web: http://www.profelis.com.tr/;>http://www.profelis.com.tr/
+
+Additional Info:
+
+Profelis offers Linux and Open Source Consultancy in Turkey and is ISO 9001 
and ISO
+27001 certified.
+
+
+
 
 


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2016-07-28 Thread Björn Jacke
The branch, master has been updated
   via  a2eed49 replace http://samba.org -> https://www.samba.org links on 
team site
  from  f77b71e fix link to patch-4.2.13-4.2.14.diffs.gz

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit a2eed49c8a252ca091de2e06f9f8cfb7ad027b43
Author: Björn Jacke 
Date:   Fri Jul 29 00:41:53 2016 +0200

replace http://samba.org -> https://www.samba.org links on team site

---

Summary of changes:
 team/index.html | 30 +++---
 1 file changed, 15 insertions(+), 15 deletions(-)


Changeset truncated at 500 lines:

diff --git a/team/index.html b/team/index.html
index 40442b9..58d0716 100755
--- a/team/index.html
+++ b/team/index.html
@@ -6,7 +6,7 @@
 
 The Samba Team is a loose-knit group of about 40 people from all over the
 world who contribute regularly to Samba and have direct write access to the http://wiki.samba.org/index.php/Using_Git_for_Samba_Development;>Samba 
Git repository.  The number of people
+href="https://wiki.samba.org/index.php/Using_Git_for_Samba_Development;>Samba 
Git repository.  The number of people
 actively doing Git checkins is approximately 10 - 15 people.  Of course,
 there is always room to help.
 
@@ -46,18 +46,18 @@ mailing list and start contributing to the development 
of Samba.
 
 
 
-http://samba.org/~obnox/;>Michael Adam(https://www.redhat.com/;>Red Hat)
-http://samba.org/~jra;>Jeremy Allison
+https://www.samba.org/~obnox/;>Michael Adam(https://www.redhat.com/;>Red Hat)
+https://www.samba.org/~jra;>Jeremy Allison
 mailto:a...@samba.org;>Christian Ambach
 mailto:anato...@samba.org;>Anatoliy Atanasov
 http://halo.gen.nz/;>Douglas Bagnall(http://catalyst.net.nz/what-we-offer/enterprise-solutions/samba;>Catalyst)
-http://samba.org/~abartlet/;>Andrew Bartlett(http://catalyst.net.nz/what-we-offer/enterprise-solutions/samba;>Catalyst)
+https://www.samba.org/~abartlet/;>Andrew Bartlett(http://catalyst.net.nz/what-we-offer/enterprise-solutions/samba;>Catalyst)
 mailto:k...@samba.org;>Kai Blin
 mailto:s...@samba.org;>Ralph Bhme(http://www.sernet.de/en/;>SerNet)
 mailto:a...@samba.org;>Alexander Bokovoy(https://www.redhat.com/;>Red Hat)
 mailto:i...@samba.org;>Ira Cooper(https://www.redhat.com/;>Red Hat)
-http://samba.org/~sdanneman/;>Steven Danneman
-http://samba.org/~gd;>Gnther Deschner(https://www.redhat.com/;>Red Hat)
+https://www.samba.org/~sdanneman/;>Steven Danneman
+https://www.samba.org/~gd;>Gnther Deschner(https://www.redhat.com/;>Red Hat)
 mailto:dd...@samba.org;>David Disseldorp(https://www.suse.com/;>SUSE)
 mailto:sfre...@samba.org;>Steve French
 http://ubiqx.org/;>Chris Hertel
@@ -65,10 +65,10 @@ mailing list and start contributing to the development 
of Samba.
 http://people.su.se/~lha/;>Love Hrnquist 
strand
 mailto:ami...@samba.org;>Amitay Isaacs
 mailto:nivan...@samba.org;>Nadezhda Ivanova
-http://www.j3e.de/;>Bjrn Jacke(http://www.sernet.de/en/;>SerNet)
+https://www.j3e.de/;>Bjrn Jacke(https://www.sernet.de/en/;>SerNet)
 mailto:mkap...@samba.org;>Marc Kaplan
 mailto:ku...@samba.org;>Gnter Kukkukk
-http://www.samba.org/~jlayton/jlayton_resume.html;>Jeff 
Layton
+https://www.samba.org/~jlayton/jlayton_resume.html;>Jeff 
Layton
 mailto:v...@samba.org;>Volker Lendecke(http://www.sernet.de/en/;>SerNet)
 mailto:h...@samba.org;>Herb Lewis
 mailto:derr...@samba.org;>Derrell Lipman
@@ -78,27 +78,27 @@ mailing list and start contributing to the development 
of Samba.
 
 mailto:kame...@samba.org;>Kamen Mazdrashki
 mailto:j...@samba.org;>Jim McDonough(https://www.suse.com/;>SUSE)
-mailto:me...@samba.org;>Stefan Metzmacher(http://www.sernet.de/en/;>SerNet)
+mailto:me...@samba.org;>Stefan Metzmacher(https://www.sernet.de/en/;>SerNet)
 mailto:mmuehlf...@samba.org;>Marc Muehlfeld
-http://samba.org/~lmuelle/;>Lars Mller(https://www.suse.com/;>SUSE)
+https://www.samba.org/~lmuelle/;>Lars Mller(https://www.suse.com/;>SUSE)
 mailto:m...@samba.org;>Matthieu Patou
 mailto:jpe...@samba.org;>James Peach
 mailto:t...@samba.org;>Tim Potter
-http://samba.org/~tprouty/;>Tim Prouty
+https://www.samba.org/~tprouty/;>Tim Prouty
 mailto:jar...@samba.org;>José A. Rivera(https://www.redhat.com/;>Red Hat)
 http://ozlabs.org/~rusty/;>Rusty Russell
 Garming Sam(http://catalyst.net.nz/what-we-offer/enterprise-solutions/samba;>Catalyst)
 mailto:c...@samba.org;>Christof Schmitt
-http://samba.org/~asn/;>Andreas Schneider(https://www.redhat.com/;>Red Hat)
+https://www.samba.org/~asn/;>Andreas Schneider(https://www.redhat.com/;>Red Hat)
 http://martin.meltin.net/;>Martin Schwenke
-mailto:ksee...@samba.org;>Karolin Seeger(http://www.sernet.de/en/;>SerNet)
+mailto:ksee...@samba.org;>Karolin Seeger(https://www.sernet.de/en/;>SerNet)
 http://www.richardsharpe.com;>Richard Sharpe
 mailto:i...@samba.org;>Simo Sorce(https://www.redhat.com/;>Red Hat)
 

[SCM] Samba Website Repository - branch master updated

2016-07-06 Thread Björn Jacke
The branch, master has been updated
   via  2b8aaa8 um support site: add some space for beauty
  from  41a97bb add IT-OPTICS to support site for Belgium

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 2b8aaa8acf03184e87978a23c94fcaa303364a35
Author: Björn Jacke 
Date:   Wed Jul 6 15:35:42 2016 +0200

um support site: add some space for beauty

---

Summary of changes:
 support/belgium.html | 2 ++
 1 file changed, 2 insertions(+)


Changeset truncated at 500 lines:

diff --git a/support/belgium.html b/support/belgium.html
index f6edfc8..4af57d3 100644
--- a/support/belgium.html
+++ b/support/belgium.html
@@ -15,6 +15,7 @@ Antwerp
 http://www.kangaroot.net
 i...@kangaroot.net, sa...@kangaroot.net
 Peter Dens
+
 
 
 Kangaroot is Belgium's number one Linux  Open Source service provider, 
since 2000. With three key market focusses : Solutions  Services, Training 
 Software Development.
@@ -37,6 +38,7 @@ Phone : +32 65 84 23 85
 Email : samba [ at ] it-optics.com
 Contact people : Gaëtan SLONGO, Lorenzo BASSANI
 Linked-in: https://www.linkedin.com/company/5258803
+
 
 
 


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2016-07-06 Thread Björn Jacke
The branch, master has been updated
   via  41a97bb add IT-OPTICS to support site for Belgium
  from  a21382b NEWS[4.2.13]: Samba 4.2.13 Available for Download

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 41a97bbab18308cf72ab6a38dac0928720bc5c1a
Author: Björn Jacke 
Date:   Wed Jul 6 15:20:34 2016 +0200

add IT-OPTICS to support site for Belgium

---

Summary of changes:
 support/belgium.html | 23 +++
 1 file changed, 23 insertions(+)


Changeset truncated at 500 lines:

diff --git a/support/belgium.html b/support/belgium.html
index a089af8..f6edfc8 100644
--- a/support/belgium.html
+++ b/support/belgium.html
@@ -24,6 +24,29 @@ Samba installations have no secrets for us, we're strong in 
integrating with exi
 Specialty samba capabilities: - Integration - Training
 
 
+
+IT-OPTICS S.A. - Open-Source Solutions & Services
+
+
+Boulevard Initialis, 28
+7000 MONS
+Belgium
+
+Website : http://www.it-optics.com
+Phone : +32 65 84 23 85
+Email : samba [ at ] it-optics.com
+Contact people : Gaëtan SLONGO, Lorenzo BASSANI
+Linked-in: https://www.linkedin.com/company/5258803
+
+
+
+IT-OPTICS is an IT services company based in Mons (Belgium) and especially 
active in Wallonia and Brussels. We are specialized in Linux  Open Source 
solutions since 2000 (see our website). Our core-buisiness are Solutions  
Services based on Open-Source Solutions and Software Development.
+We are active in Samba integration since the beginning (2000) with a strong 
experience on this activity. Our customers are diversified by size and origin 
(Government/Private, Small/Medium/Large business). We are now focusing on Samba 
4+ integration with already some very relevant references on that field.
+
+
+
+Specialty samba capabilities: Analysis, Integration/Migration, Customer 
Support, Training of technical teams
+
 
 
 


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2016-02-11 Thread Björn Jacke
The branch, master has been updated
   via  c04dc63 html: /docs/: remove links to vanished external book images
  from  49b2202 NEWS[4.4.0rc2]: Samba 4.4.0rc2 Available for Download

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit c04dc63a3f2ad60af48437406c7a84980346c557
Author: Björn Jacke 
Date:   Thu Feb 11 16:04:39 2016 +0100

html: /docs/: remove links to vanished external book images

---

Summary of changes:
 docs/index.html | 10 +++---
 1 file changed, 3 insertions(+), 7 deletions(-)


Changeset truncated at 500 lines:

diff --git a/docs/index.html b/docs/index.html
index f3cd1ff..300525a 100755
--- a/docs/index.html
+++ b/docs/index.html
@@ -81,9 +81,7 @@ earlier version of Samba then you may find some 
differences.
 Samba Books
 
 
-  http://www.oreilly.com/catalog/samba3/;>
-  http://www.oreilly.com/catalog/covers/0596007698_cat.gif;
-  alt="Using Samba, 3rd ed."/>Using Samba has been updated to
+  http://www.oreilly.com/catalog/samba3/;>Using Samba 
has been updated to
   cover recent Samba 3.0 features and expanded to address more
   topics.  The online version is not yet available in the Samba
   releases.  However, you can read a sample chapter and purchase hard copies
@@ -91,8 +89,7 @@ earlier version of Samba then you may find some 
differences.
 
 
 
-  http://www.amazon.com/exec/obidos/tg/detail/-/0131453556/qid=105885/sr=1-1/ref=sr_1_1/102-7153927-8348145?v=glances=books;>
-  http://images.pearsoned-ema.com/jpeg/small/0131453556.jpg; 
alt="Official Samba 3 HOWTO" />
+  http://www.amazon.com/exec/obidos/tg/detail/-/0131453556/qid=105885/sr=1-1/ref=sr_1_1/102-7153927-8348145?v=glances=books;>
   The current Samba-3 release version of the Samba3-HOWTO
   is available in PDF and HTML
   formats.  Hard copy of this document be purchased from http://www.amazon.com/exec/obidos/tg/detail/-/0131882228;>
@@ -100,8 +97,7 @@ earlier version of Samba then you may find some 
differences.
 
 
 
-  http://www.amazon.com/exec/obidos/tg/detail/-/0131472216/qid=1081554032/sr=8-3/ref=sr_8_xs_ap_i3_zgl14/002-4578714-9739259?v=glances=booksn=507846;>
-  http://images.pearsoned-ema.com/jpeg/small/0131472216.jpg; 
alt="Samba 3 By Example" />
+  http://www.amazon.com/exec/obidos/tg/detail/-/0131472216/qid=1081554032/sr=8-3/ref=sr_8_xs_ap_i3_zgl14/002-4578714-9739259?v=glances=booksn=507846;>
   The current Samba-3 release version of the Samba3-ByExample may be found here 
in
   PDF and HTML
   formats. Hard copy (which includes a CDROM with all Example files) may 
purchased from 


-- 
Samba Website Repository



  1   2   3   4   5   >